X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/d841d3d1352b31e7a2196b07f4ae335e6bca8380..1262b376ef56da9f5b8ec6cfd708620069f0ff87:/app/views/changeset/_changeset.rhtml?ds=sidebyside
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 %>