X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/4d6533db32c747418e3014c93e87c7762acdbff5..5cb9f2b022ba1c829ae5f4d980f27c7aad694ff6:/app/views/browse/_map.html.erb diff --git a/app/views/browse/_map.html.erb b/app/views/browse/_map.html.erb index ff6ccae3c..8c28644b1 100644 --- a/app/views/browse/_map.html.erb +++ b/app/views/browse/_map.html.erb @@ -3,6 +3,11 @@
<% if map.instance_of? Changeset or (map.instance_of? Node and map.version > 1) or map.visible %> + + <% content_for :head do %> + <%= javascript_include_tag "browse" %> + <% end %> + <% if map.instance_of? Changeset bbox = map.bbox.to_unscaled @@ -14,6 +19,12 @@ :maxlon => bbox.max_lon, :maxlat => bbox.max_lat } + elsif map.instance_of? Note + data = { + :type => "note", + :lon => map.lon, + :lon => map.lat + } else data = { :type => map.class.name.downcase, @@ -26,10 +37,17 @@ <%= content_tag "div", "", :id => "small_map", :data => data %> <%= t 'browse.map.loading' %> - <%= link_to t("browse.map.larger.area"), - root_path(:box => "yes"), - :id => "area_larger_map", - :class => "geolink bbox" %> + <% if map.instance_of? Note -%> + <%= link_to t("browse.map.larger.area"), + root_path(:note => "yes"), + :id => "area_larger_map", + :class => "geolink bbox" %> + <% else -%> + <%= link_to t("browse.map.larger.area"), + root_path(:box => "yes"), + :id => "area_larger_map", + :class => "geolink bbox" %> + <% end -%>
<%= link_to h(t("browse.map.edit.area")) + content_tag(:span, "▾", :class => "menuicon"), edit_path, @@ -37,7 +55,7 @@ :data => { :editor => preferred_editor }, :class => "geolink bbox" %> - <% unless map.instance_of? Changeset %> + <% unless map.instance_of? Changeset or map.instance_of? Note %>
<%= link_to t("browse.map.larger." + map.class.to_s.downcase), root_path, @@ -58,7 +76,7 @@