]> git.openstreetmap.org Git - rails.git/blob - app/views/layouts/map.html.erb
2d50b5abf6520eb85068465427ca7d384d8410ea
[rails.git] / app / views / layouts / map.html.erb
1 <% content_for :head do %>
2   <%= javascript_include_tag "index" %>
3 <% end %>
4
5 <% content_for(:body_class) { "map-layout" } %>
6
7 <% if @user and !@user.home_lon.nil? and !@user.home_lat.nil? %>
8   <% content_for :greeting do %>
9     <%= link_to t("layouts.home"),
10                 "#",
11                 :id => "homeanchor",
12                 :class => "set_position",
13                 :data => { :lat => @user.home_lat,
14                            :lon => @user.home_lon,
15                            :zoom => 15 } %>
16   <% end %>
17 <% end %>
18
19 <% content_for :content do %>
20   <div id="sidebar" class="<%= 'minimized' if @user %>">
21     <%= form_tag search_path, :id => "search_form" do %>
22       <%= submit_tag t('site.search.submit_text') %>
23       <div id='query_wrapper'>
24         <%= text_field_tag :query, params[:query],
25                            :placeholder => t('site.search.search') %>
26         <%= link_to t('site.search.where_am_i'), '#', { :id => "describe_location", :title => t('site.search.where_am_i_title') } %>
27       </div>
28     <% end %>
29
30     <div id="sidebar_content">
31       <% if STATUS == :database_offline or STATUS == :api_offline %>
32         <p class="error"><%= t 'layouts.osm_offline' %></p>
33       <% elsif STATUS == :database_readonly or STATUS == :api_readonly %>
34         <p class="error"><%= t 'layouts.osm_read_only' %></p>
35       <% end %>
36
37       <%= render :partial => "layouts/flash" %>
38
39       <%= yield %>
40     </div>
41   </div>
42
43   <noscript>
44     <div id="noscript">
45       <p><%= t 'site.index.js_1' %></p>
46       <p><%= t 'site.index.js_2' %></p>
47     </div>
48   </noscript>
49
50   <div id="map-ui">
51   </div>
52
53   <div id="map" tabindex="2">
54   </div>
55
56   <div id="attribution">
57     <table width="100%">
58       <tr>
59         <td class="attribution_license"><%= t 'site.index.license.license_url' %></td>
60         <td class="attribution_project"><%= t 'site.index.license.project_url' %></td>
61       </tr>
62       <tr>
63         <td colspan="2" class="attribution_notice"><%= t 'site.index.license.copyright' %></td>
64       </tr>
65     </table>
66   </div>
67 <% end %>
68
69 <%= render :template => 'layouts/site' %>