]> git.openstreetmap.org Git - rails.git/blobdiff - app/views/browse/_node_details.rhtml
Make URL that link to the OSM Wiki configurable by translations. A lot
[rails.git] / app / views / browse / _node_details.rhtml
index 492aa06db43f44de461eb2a834ff01010bc8b45c..7982e68052b448a2d69cccaa73f8e90d8b5c617c 100644 (file)
@@ -2,9 +2,14 @@
 
   <%= render :partial => "common_details", :object => node_details %>
 
+  <tr>
+    <th><%= t 'browse.node_details.coordinates' %></th>
+    <td><div class="geo"><%= link_to ("<span class='latitude'>#{number_with_delimiter(node_details.lat)}</span>, <span class='longitude'>#{number_with_delimiter(node_details.lon)}</span>"), {:controller => 'site', :action => 'index', :lat => h(node_details.lat), :lon => h(node_details.lon), :zoom => "18"} %></div></td>
+  </tr>
+
   <% unless node_details.ways.empty? and node_details.containing_relation_members.empty? %>
     <tr valign="top">
-      <th>Part of:</th>
+      <th><%= t 'browse.node_details.part_of' %></th>
       <td>
         <table cellpadding="0">
           <% node_details.ways.each do |way| %>