]> git.openstreetmap.org Git - rails.git/blob - app/views/layouts/_search.html.erb
c9ae72477e4ce1f50733ff01f7de09018468007c
[rails.git] / app / views / layouts / _search.html.erb
1 <div class="search_forms">
2   <form method="GET" action="<%= search_path %>" class="search_form">
3     <%= link_to image_tag('directions.png', :class => 'button'), directions_path, { :class => "button switch_link", :title => t('site.search.get_directions_title') } %>
4     <%= submit_tag t('site.search.submit_text'), :class => 'float' %>
5     <div class='query_wrapper'>
6       <%= text_field_tag "query", params[:query], :placeholder => t("site.search.search"), :autofocus => autofocus, :class => 'overflow' %>
7       <%= link_to t('site.search.where_am_i'), '#', { :class => "describe_location", :title => t('site.search.where_am_i_title') } %>
8     </div>
9   </form>
10
11   <form method="GET" action="<%= directions_path %>" class="directions_form">
12     <div width="100%" align="right"><%= link_to image_tag('search.png', :class => 'button'), root_path, { :class => "button", :title => t('site.search.close_directions_title') } %></div>
13
14     <div class="line">
15       <%= image_tag "marker-green.png", :class => 'routing_marker', :id => 'marker_from', :draggable => 'true' %>
16       <span class="force_width"><%= text_field_tag "route_from", params[:from], :placeholder => t('site.search.from') %></span>
17     </div>
18     <div class="line">
19       <%= image_tag "marker-red.png"  , :class => 'routing_marker', :id => 'marker_to'  , :draggable => 'true' %>
20       <span class="force_width"><%= text_field_tag "route_to"  , params[:to]  , :placeholder => t('site.search.to') %></span>
21     </div>
22     <select class='routing_engines' name='routing_engines'></select>
23     <div width="100%" align="right"><%= submit_tag t('site.search.submit_text') %></div>
24     <%= image_tag "searching-small.gif", :class => 'spinner', :style => "vertical-align: middle; display: none;" %>
25   </form>
26 </div>