X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/1f8a68371ad34594cce4aadf5fef229588fd4ddc..b02c873c0e892b4bd0b0e511020caaf86337b1de:/app/views/changeset/_changeset.rhtml diff --git a/app/views/changeset/_changeset.rhtml b/app/views/changeset/_changeset.rhtml index 049be5d33..a149a72e9 100644 --- a/app/views/changeset/_changeset.rhtml +++ b/app/views/changeset/_changeset.rhtml @@ -33,13 +33,12 @@ <% if changeset.min_lat.nil? %> (no edits) <% else - lat1 = changeset.min_lat/GeoRecord::SCALE.to_f - lat2 = changeset.max_lat/GeoRecord::SCALE.to_f - lon1 = changeset.min_lon/GeoRecord::SCALE.to_f - lon2 = changeset.max_lon/GeoRecord::SCALE.to_f + minlon = changeset.min_lon/GeoRecord::SCALE.to_f + minlat = changeset.min_lat/GeoRecord::SCALE.to_f + maxlon = changeset.max_lon/GeoRecord::SCALE.to_f + maxlat = changeset.max_lat/GeoRecord::SCALE.to_f %> - (<%= format("%0.3f",lat1) -%>,<%= format("%0.3f",lon1) -%>) to - (<%= format("%0.3f",lat2) -%>,<%= format("%0.3f",lon2) -%>) + (<%= format("%0.3f",minlon) -%>,<%= format("%0.3f",minlat) -%>,<%= format("%0.3f",maxlon) -%>,<%= format("%0.3f",maxlat) -%>) <% end %>