X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/7e4ceec192572936f5618d6e834bd5cea4f26b80..4259ca6572808ba26c39eb436f3ea37cba4241cd:/app/views/changeset/_map.html.erb diff --git a/app/views/changeset/_map.html.erb b/app/views/changeset/_map.html.erb index 39906af08..34cf7002a 100644 --- a/app/views/changeset/_map.html.erb +++ b/app/views/changeset/_map.html.erb @@ -50,16 +50,19 @@ var bounds = new OpenLayers.Bounds(); <% @edits.each do |edit| %> - 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 %>; - var maxlat = <%= edit.max_lat / GeoRecord::SCALE.to_f %>; + <% if edit.has_valid_bbox? %> + <% bbox = edit.bbox.to_unscaled %> + var minlon = <%= bbox.min_lon %>; + var minlat = <%= bbox.min_lat %>; + var maxlon = <%= bbox.max_lon %>; + var maxlat = <%= bbox.max_lat %>; var bbox = new OpenLayers.Bounds(minlon, minlat, maxlon, maxlat); bounds.extend(bbox); addBoxToMap(bbox, "<%= edit.id %>", true); <% end %> + <% end %> vectors.events.on({ "featureselected": function(feature) {