X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/e120e59fc0dc6c4a2a09ea8a068b901a8c6ac256..e5c80c80ade40c3360f49eb70a9db8464ffa9169:/app/views/changeset/_map.html.erb diff --git a/app/views/changeset/_map.html.erb b/app/views/changeset/_map.html.erb index 5f5f4aa5d..69d32b2c2 100644 --- a/app/views/changeset/_map.html.erb +++ b/app/views/changeset/_map.html.erb @@ -50,6 +50,7 @@ var bounds = new OpenLayers.Bounds(); <% @edits.each do |edit| %> + <% if edit.has_valid_bbox? %> var minlon = <%= edit.min_lon / GeoRecord::SCALE.to_f %>; var minlat = <%= edit.min_lat / GeoRecord::SCALE.to_f %>; var maxlon = <%= edit.max_lon / GeoRecord::SCALE.to_f %>; @@ -57,7 +58,9 @@ var bbox = new OpenLayers.Bounds(minlon, minlat, maxlon, maxlat); bounds.extend(bbox); - box = addBoxToMap(bbox, "<%= edit.id %>", true); + + addBoxToMap(bbox, "<%= edit.id %>", true); + <% end %> <% end %> vectors.events.on({