From 2d56ad8d84315c2c3fdfb72e5c308b520431b0eb Mon Sep 17 00:00:00 2001 From: Christopher Schmidt Date: Wed, 30 Apr 2008 02:48:26 +0000 Subject: [PATCH] Simplify a couple things that no longer need to be so complex. --- public/export/embed.html | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) 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(); } -- 2.43.2