]> git.openstreetmap.org Git - rails.git/blobdiff - app/views/site/index.html.erb
Add edit links to data browser pages
[rails.git] / app / views / site / index.html.erb
index e417c26958803e654358350d1f4640cf52830db6..c4d990618af9a4163372bb561220565d2c2775ae 100644 (file)
@@ -66,7 +66,13 @@ if params['node'] or params['way'] or params['relation']
 end
 
 # Decide on a lat lon to initialise the map with. Various ways of doing this
-if params['minlon'] and params['minlat'] and params['maxlon'] and params['maxlat']
+if params['bbox']
+    bbox = true
+    minlon, minlat, maxlon, maxlat = h(params['bbox']).split(",")
+    layers = h(params['layers'])
+    box = true if params['box']=="yes"
+    object_zoom = false
+elsif params['minlon'] and params['minlat'] and params['maxlon'] and params['maxlat']
     bbox = true
     minlon = h(params['minlon'])
     minlat = h(params['minlat'])