1 {{#*inline "partial_one_result"}}
2 <div class="result" data-position="{{iResNum}}">
3 {{formatMapIcon aResult}}
5 <span class="name">{{aResult.display_name}}</span>
6 <span class="type">({{formatLabel aResult}})</span>
7 <p class="coords">{{aResult.lat}},{{aResult.lon}}</p>
9 <a class="details btn btn-outline-secondary btn-sm"
10 href="details.html?osmtype={{shortOSMType aResult.osm_type}}&osmid={{aResult.osm_id}}">details</a>
14 <div class="top-bar" id="structured-query-selector">
15 <div class="search-type-link">
16 <a id="switch-to-reverse" href="/reverse.html">reverse search</a>
18 <div class="form-check form-check-inline">
19 <input class="form-check-input" type="radio" name="query-selector"
20 id="simple" value="simple" {{#unless hStructured}}checked="checked"{{/unless}}>
21 <label class="form-check-label" for="simple">simple</label>
23 <div class="form-check form-check-inline">
24 <input class="form-check-input" type="radio" name="query-selector"
25 id="structured" value="structured" {{#if hStructured}}checked="checked"{{/if}}>
26 <label class="form-check-label" for="structured">structured</label>
29 <form class="form-inline" role="search" accept-charset="UTF-8" action="">
30 <div class="form-group-simple {{#if hStructured}}hidden{{/if}}">
34 class="form-control form-control-sm"
38 <div class="form-group-structured {{#unless hStructured}}hidden{{/unless}}">
39 <div class="form-inline">
40 <input name="street" type="text" class="form-control form-control-sm mr-1"
41 placeholder="House number/Street"
42 value="{{hStructured.street}}" />
43 <input name="city" type="text" class="form-control form-control-sm mr-1"
45 value="{{hStructured.city}}" />
46 <input id="county" name="county" type="text" class="form-control form-control-sm mr-1"
48 value="{{hStructured.county}}" />
49 <input name="state" type="text" class="form-control form-control-sm mr-1"
51 value="{{hStructured.state}}" />
52 <input name="country" type="text" class="form-control form-control-sm mr-1"
54 value="{{hStructured.country}}" />
55 <input name="postalcode" type="text" class="form-control form-control-sm mr-1"
56 placeholder="Postal Code"
57 value="{{hStructured.postalcode}}" />
60 <div class="form-group search-button-group">
61 <button type="submit" class="btn btn-primary btn-sm mx-1">Search</button>
62 <input type="hidden" name="viewbox" value="{{sViewBox}}" />
63 <div class="form-check form-check-inline">
64 <input type="checkbox" class="form-check-input"
65 id="use_viewbox" {{#if sViewBox}}checked="checked"{{/if}}>
66 <label class="form-check-label" for="use_viewbox">apply viewbox</label>
75 <div id="searchresults" class="sidebar">
76 {{#each aSearchResults as |aResult|}}
77 {{>partial_one_result iResNum=@index aResult=aResult env=env}}
80 {{#if aSearchResults}}
83 <a class="btn btn-primary" href="{{sMoreURL}}">
84 Search for more results
89 <div class="noresults">No search results found</div>
95 <div id="intro" class="sidebar">
96 <h2>Welcome to Nominatim</h2>
99 Nominatim is a search engine for
100 <a href="https://www.openstreetmap.org">OpenStreetMap</a> data. This
101 is the debugging interface. You may search for a name or address
102 (forward search) or look up data by its geographic coordinate (reverse
103 search). Each result comes with a link to a details page where you
104 can inspect what data about the object is saved in the database and
105 investigate how the address of the object has been computed.
108 For more information visit the
109 <a href="https://nominatim.org">Nominatim home page</a>.
114 <div id="map-wrapper">
115 <div id="map-position">
116 <div id="map-position-inner"></div>
117 <div id="map-position-close"><a href="#">hide</a></div>