X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/73aedc2e5c47e8d74f1bd5ab127f00730ba9d3db..2d56ad8d84315c2c3fdfb72e5c308b520431b0eb:/public/export/embed.html diff --git a/public/export/embed.html b/public/export/embed.html index 58bfdec21..7fe7d4683 100644 --- a/public/export/embed.html +++ b/public/export/embed.html @@ -85,14 +85,12 @@ if (args.marker) { var markers = new OpenLayers.Layer.Markers(); map.addLayer(markers); - var center = args.marker.split(","); - markers.addMarker( new OpenLayers.Marker(new OpenLayers.LonLat(center[1], center[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) { - var bounds = OpenLayers.Bounds.fromString(args.bbox).transform(map.displayProjection, map.getProjectionObject()); - var center = bounds.getCenterLonLat(); - map.setCenter(center, map.getZoomForExtent(bounds, true); + if (args.bbox) { + var bounds = OpenLayers.Bounds.fromArray(args.bbox).transform(map.displayProjection, map.getProjectionObject()); + map.zoomToExtent(bounds) } else { map.zoomToMaxExtent(); }