X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/7e4ceec192572936f5618d6e834bd5cea4f26b80..a333712ad7c64a77836929fa055c0de519183877:/app/views/site/index.html.erb diff --git a/app/views/site/index.html.erb b/app/views/site/index.html.erb index 1f1313c53..c4d990618 100644 --- a/app/views/site/index.html.erb +++ b/app/views/site/index.html.erb @@ -18,7 +18,7 @@
@@ -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'])