]> git.openstreetmap.org Git - rails.git/blob - app/views/layouts/_search.html.erb
Merge remote-tracking branch 'upstream/pull/4262'
[rails.git] / app / views / layouts / _search.html.erb
1 <div class="search_forms">
2   <form method="GET" action="<%= search_path %>" class="search_form px-1 py-2">
3     <div class="row gx-2 mx-0">
4       <div class="col">
5         <div class="input-group flex-nowrap">
6           <%= text_field_tag "query", params[:query], :placeholder => t("site.search.search"), :autofocus => autofocus, :autocomplete => "on", :class => "form-control form-control-sm", :dir => "auto" %>
7           <div class="input-group-text border-start-0 p-0 position-relative">
8             <%= button_tag t("site.search.where_am_i"), :type => "button", :class => "describe_location position-absolute end-0 me-1 btn btn-sm btn-outline-primary border-0 bg-transparent", :title => t("site.search.where_am_i_title") %>
9           </div>
10           <%= submit_tag t("site.search.submit_text"), :class => "btn btn-sm btn-primary", :data => { :disable_with => false } %>
11         </div>
12       </div>
13       <div class="col-auto">
14         <%= link_to image_tag("directions.png", :width => "20", :height => "20", :class => "align-bottom"), directions_path, :class => "btn btn-sm btn-primary switch_link", :title => t("site.search.get_directions_title") %>
15       </div>
16     </div>
17   </form>
18
19   <form method="GET" action="<%= directions_path %>" class="directions_form pb-3">
20     <div class="d-flex flex-row-reverse px-3 py-3"><button type="button" class="btn-close" aria-label="<%= t("javascripts.close") %>"></button></div>
21
22     <div class="row gx-2 m-1">
23       <div class="col-1">
24         <%= image_tag "marker-green.png", :class => "routing_marker mx-auto d-block", :data => { :type => "from" }, :draggable => "true" %>
25       </div>
26       <div class="col">
27         <%= text_field_tag "route_from", params[:from], :placeholder => t("site.search.from"), :autocomplete => "on", :class => "form-control form-control-sm", :dir => "auto" %>
28       </div>
29     </div>
30     <div class="row gx-2 m-1">
31       <div class="col-1">
32         <%= image_tag "marker-red.png", :class => "routing_marker mx-auto d-block", :data => { :type => "to" }, :draggable => "true" %>
33       </div>
34       <div class="col">
35         <%= text_field_tag "route_to", params[:to], :placeholder => t("site.search.to"), :autocomplete => "on", :class => "form-control form-control-sm", :dir => "auto" %>
36       </div>
37     </div>
38     <div class="row gx-2 m-1">
39       <div class="col offset-1">
40         <select class="routing_engines form-select form-select-sm" name="routing_engines"></select>
41       </div>
42       <div class="col-auto">
43         <%= submit_tag t("site.search.submit_text"), :class => "routing_go btn btn-sm btn-primary", :data => { :disable_with => false } %>
44       </div>
45     </div>
46     <div class="row gx-2 m-1">
47       <div class="col offset-1">
48         <button class="btn btn-sm btn-link reverse_directions"><%= t("site.search.reverse_directions_text") %></button>
49       </div>
50     </div>
51
52     <div class="loader_copy d-none">
53       <div class="text-center loader">
54         <div class="spinner-border" role="status">
55           <span class="visually-hidden"><%= t("browse.start_rjs.loading") %></span>
56         </div>
57       </div>
58     </div>
59   </form>
60 </div>