X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/8207c39859e0c95a5566740f6a3f1e1e177e1aeb..ab3e5e6d43f993892c625d9a89364d1475ac4488:/public/javascripts/map.js diff --git a/public/javascripts/map.js b/public/javascripts/map.js index 0457713c5..9773ab348 100644 --- a/public/javascripts/map.js +++ b/public/javascripts/map.js @@ -84,7 +84,7 @@ function createMap(divName, options) { projection: "EPSG:900913" }); map.addLayer(markers); - + return map; } @@ -108,6 +108,49 @@ function addMarkerToMap(position, icon, description) { return marker; } +function addObjectToMap(url, zoom, callback) { + var layer = new OpenLayers.Layer.GML("Objects", url, { + format: OpenLayers.Format.OSM, + style: { + strokeColor: "blue", + strokeWidth: 3, + strokeOpacity: 0.5, + fillOpacity: 0.2, + fillColor: "lightblue" + }, + projection: new OpenLayers.Projection("EPSG:4326"), + displayInLayerSwitcher: false + }); + + layer.events.register("loadend", layer, function() { + var extent; + + if (this.features.length) { + extent = this.features[0].geometry.getBounds(); + + for (var i = 1; i < this.features.length; i++) { + extent.extend(this.features[i].geometry.getBounds()); + } + + if (zoom) { + if (extent) { + this.map.zoomToExtent(extent); + } else { + this.map.zoomToMaxExtent(); + } + } + } + + if (callback) { + callback(extent); + } + }); + + map.addLayer(layer); + + layer.loadGML(); +} + function addBoxToMap(boxbounds) { if(!vectors) { // Be aware that IE requires Vector layers be initialised on page load, and not under deferred script conditions