]> git.openstreetmap.org Git - rails.git/blob - app/views/browse/_map.html.erb
Fix formating of way and relation redaction messages as well
[rails.git] / app / views / browse / _map.html.erb
1 <iframe id="linkloader" style="display: none">
2 </iframe>
3
4 <div id="browse_map" class='clearfix content_map'>
5   <% if map.instance_of? Changeset or (map.instance_of? Node and map.version > 1) or map.visible %>
6
7   <% content_for :head do %>
8     <%= javascript_include_tag "browse" %>
9   <% end %>
10
11   <%
12      if map.instance_of? Changeset
13        bbox = map.bbox.to_unscaled
14        data = {
15          :type   => "changeset",
16          :id     => map.id,
17          :minlon => bbox.min_lon,
18          :minlat => bbox.min_lat,
19          :maxlon => bbox.max_lon,
20          :maxlat => bbox.max_lat
21        }
22      else
23        data = {
24          :type    => map.class.name.downcase,
25          :id      => map.id,
26          :version => map.version,
27          :visible => map.visible
28        }
29      end
30   %>
31   <%= content_tag "div", "", :id => "small_map", :data => data %>
32   <span id="loading"><%= t 'browse.map.loading' %></span>
33
34 <ul class='secondary-actions clearfix'>
35   <li>
36     <%= link_to t("browse.map.larger.area"),
37                 root_path(:box => "yes"),
38                 :id => "area_larger_map",
39                 :class => "geolink bbox" %>
40   </li>
41   <li>
42     <%= link_to h(t("browse.map.edit.area")) + content_tag(:span, "▾", :class => "menuicon"),
43                 edit_path,
44                 :id => "area_edit",
45                 :data => { :editor => preferred_editor },
46                 :class => "geolink bbox" %>
47   </li>
48 </ul>
49
50   <% unless map.instance_of? Changeset %>
51   <ul class='secondary-actions clearfix'>
52     <li>
53       <%= link_to t("browse.map.larger." + map.class.to_s.downcase),
54                   root_path,
55                   :id => "object_larger_map",
56                   :class => "geolink object" %>
57     </li>
58     <li>
59       <%= link_to h(t("browse.map.edit." + map.class.to_s.downcase)) + content_tag(:span, "▾", :class => "menuicon"),
60                   edit_path,
61                   :id => "object_edit",
62                   :data => { :editor => preferred_editor },
63                   :class => "geolink object" %>
64     </li>
65   </ul>
66   <% end %>
67
68   <% else %>
69     <%= t 'browse.map.deleted' %>
70   <% end %>
71 </div>
72
73 <div id="area_edit_menu" class="menu">
74   <ul>
75     <% Editors::RECOMMENDED_EDITORS.each do |editor| %>
76       <li><%= link_to t('layouts.edit_with', :editor => t("editor.#{editor}.description")),
77                       edit_path(:editor => editor),
78                       :data => {:editor => editor},
79                       :class => "geolink bbox" %></li>
80     <% end %>
81   </ul>
82 </div>
83
84 <div id="object_edit_menu" class="menu">
85   <ul>
86     <% Editors::RECOMMENDED_EDITORS.each do |editor| %>
87       <li><%= link_to t('layouts.edit_with', :editor => t("editor.#{editor}.description")),
88                       edit_path(:editor => editor),
89                       :data => {:editor => editor},
90                       :class => "geolink object" %></li>
91     <% end %>
92   </ul>
93 </div>