X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/2e2f2124728ca755b2db8f83f022eaea24b647f0..bd12ec7a8bfdc244756272a2f4fec1f645a6d852:/app/views/browse/_changeset_details.html.erb diff --git a/app/views/browse/_changeset_details.html.erb b/app/views/browse/_changeset_details.html.erb index 24d5da08c..eb90fad10 100644 --- a/app/views/browse/_changeset_details.html.erb +++ b/app/views/browse/_changeset_details.html.erb @@ -24,23 +24,20 @@ <% unless changeset_details.has_valid_bbox? %> <%= t 'browse.changeset_details.no_bounding_box' %> <% else - minlon = changeset_details.min_lon/GeoRecord::SCALE.to_f - minlat = changeset_details.min_lat/GeoRecord::SCALE.to_f - maxlon = changeset_details.max_lon/GeoRecord::SCALE.to_f - maxlat = changeset_details.max_lat/GeoRecord::SCALE.to_f + bbox = changeset_details.bbox.to_unscaled %> - + - - - + + + - +
<%=maxlat -%><%=bbox.max_lat -%>
<%=minlon -%>('><%= t 'browse.changeset_details.box' %>)<%=maxlon -%><%=bbox.min_lon -%>(<%= link_to t('browse.changeset_details.box'), root_path(:minlon => bbox.min_lon, :minlat => bbox.min_lat, :maxlon => bbox.max_lon, :maxlat => bbox.max_lat, :box => 'yes'), :title => t('browse.changeset_details.show_area_box') %>)<%=bbox.max_lon -%>
<%= minlat -%><%= bbox.min_lat -%>
@@ -53,7 +50,7 @@ <% @nodes.each do |node| %> - + <% end %>
<%= link_to h(printable_name(node, true)), :action => "node", :id => node.id.to_s %>
<%= link_to h(printable_name(node, true)), { :action => "node", :id => node.node_id.to_s }, :class => link_class('node', node), :title => link_title(node) %>
@@ -67,7 +64,7 @@ <% @ways.each do |way| %> - + <% end %> <%= #render :partial => "containing_relation", :collection => changeset_details.containing_relation_members @@ -84,7 +81,7 @@
<%= link_to h(printable_name(way, true)), :action => "way", :id => way.id.to_s %>
<%= link_to h(printable_name(way, true)), { :action => "way", :id => way.way_id.to_s }, :class => link_class('way', way), :title => link_title(way) %>
<% @relations.each do |relation| %> - + <% end %>
<%= link_to h(printable_name(relation, true)), :action => "relation", :id => relation.id.to_s %>
<%= link_to h(printable_name(relation, true)), { :action => "relation", :id => relation.relation_id.to_s }, :class => link_class('relation', relation), :title => link_title(relation) %>