X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/2d56ad8d84315c2c3fdfb72e5c308b520431b0eb..26746224ccab42bb6b2f39edb524803831defc1a:/public/export/embed.html diff --git a/public/export/embed.html b/public/export/embed.html index 7fe7d4683..8e4ea2651 100644 --- a/public/export/embed.html +++ b/public/export/embed.html @@ -43,7 +43,8 @@ if(href.indexOf('?') != -1) { href = href.substring( 0, href.indexOf('?') ); } - + + this.element.target="_blank"; href += '?' + OpenLayers.Util.getParameterString(params); this.element.href = href; } @@ -71,29 +72,32 @@ var mapnik = new OpenLayers.Layer.OSM.Mapnik("Mapnik", { displayOutsideMaxExtent: true, wrapDateLine: true, - attribution: attribution + attribution: attribution }); map.addLayer(mapnik); - } else { + } else { var osmarender = new OpenLayers.Layer.OSM.Osmarender("Osmarender", { displayOutsideMaxExtent: true, wrapDateLine: true, - attribution: attribution + attribution: attribution }); - map.addLayer(osmarender); - } + map.addLayer(osmarender); + } + if (args.marker) { var markers = new OpenLayers.Layer.Markers(); map.addLayer(markers); - markers.addMarker( new OpenLayers.Marker(new OpenLayers.LonLat(args.marker[1], args.marker[0]).transform(map.displayProjection, map.getProjectionObject()))); + markers.addMarker(new OpenLayers.Marker(new OpenLayers.LonLat(args.marker[1], args.marker[0]).transform(map.displayProjection, map.getProjectionObject()))); map.marker = true; - } - if (args.bbox) { + } + + if (args.bbox) { var bounds = OpenLayers.Bounds.fromArray(args.bbox).transform(map.displayProjection, map.getProjectionObject()); map.zoomToExtent(bounds) } else { - map.zoomToMaxExtent(); + map.zoomToMaxExtent(); } + var size = map.getSize(); if (size.h > 320) { map.addControl(new OpenLayers.Control.PanZoomBar());