X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/9cb8311f02e1bd0e2188e3b1db623400aaf8da47..0f121e5390dfea022551bd1e57e1be35458665d9:/app/views/browse/_changeset_details.html.erb?ds=sidebyside
diff --git a/app/views/browse/_changeset_details.html.erb b/app/views/browse/_changeset_details.html.erb
index 9fb9cb860..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| %>
- <%= link_to h(printable_name(node, true)), { :action => "node", :id => node.id.to_s }, :class => link_class('node', node), :title => link_title(node) %> |
+ <%= link_to h(printable_name(node, true)), { :action => "node", :id => node.node_id.to_s }, :class => link_class('node', node), :title => link_title(node) %> |
<% end %>
|
@@ -67,7 +64,7 @@
<% @ways.each do |way| %>
- <%= link_to h(printable_name(way, true)), { :action => "way", :id => way.id.to_s }, :class => link_class('way', way), :title => link_title(way) %> |
+ <%= link_to h(printable_name(way, true)), { :action => "way", :id => way.way_id.to_s }, :class => link_class('way', way), :title => link_title(way) %> |
<% end %>
<%=
#render :partial => "containing_relation", :collection => changeset_details.containing_relation_members
@@ -84,7 +81,7 @@
<% @relations.each do |relation| %>
- <%= link_to h(printable_name(relation, true)), { :action => "relation", :id => relation.id.to_s }, :class => link_class('relation', relation), :title => link_title(relation) %> |
+ <%= link_to h(printable_name(relation, true)), { :action => "relation", :id => relation.relation_id.to_s }, :class => link_class('relation', relation), :title => link_title(relation) %> |
<% end %>
|
|