2 import UrlSubmitForm from '../components/UrlSubmitForm.svelte';
4 import { map_store } from '../lib/stores.js';
5 import { get } from 'svelte/store';
7 export let bStructuredSearch = false;
8 export let api_request_params = {};
13 function map_viewbox_as_string(map) {
14 var bounds = map.getBounds();
15 var west = bounds.getWest();
16 var east = bounds.getEast();
18 if ((east - west) >= 360) { // covers more than whole planet
19 west = map.getCenter().lng - 179.999;
20 east = map.getCenter().lng + 179.999;
22 east = L.latLng(77, east).wrap().lng;
23 west = L.latLng(77, west).wrap().lng;
26 west.toFixed(5), // left
27 bounds.getNorth().toFixed(5), // top
28 east.toFixed(5), // right
29 bounds.getSouth().toFixed(5) // bottom
33 function set_viewbox(map) {
34 let use_viewbox = document.getElementById('use_viewbox');
35 if (use_viewbox && use_viewbox.checked) {
36 sViewBox = map_viewbox_as_string(map);
42 function update_reverse_link(map) {
43 let center_lat_lng = map.wrapLatLng(map.getCenter());
44 lat = center_lat_lng.lat.toFixed(5);
45 lon = center_lat_lng.lng.toFixed(5);
48 map_store.subscribe(map => {
51 map.on('move', function () {
53 update_reverse_link(map);
56 map.on('load', function () {
58 update_reverse_link(map);
62 function reset_viewbox() {
63 let map = get(map_store);
64 if (map) { set_viewbox(map); }
67 function set_bounded(e) {
68 document.querySelector('input[name=bounded]').value = e.target.checked ? 1 : '';
71 function set_dedupe(e) {
72 document.querySelector('input[name=dedupe]').value = e.target.checked ? 1 : '';
75 function set_api_param(e) {
76 document.querySelector('input[name=' + e.target.dataset.apiParam + ']').value = e.target.value;
80 <ul class="nav nav-tabs">
82 <a class="nav-link" class:active={!bStructuredSearch} data-toggle="tab" href="#simple">Simple</a>
85 <a class="nav-link" class:active={bStructuredSearch} data-toggle="tab" href="#structured">Structured</a>
89 <div class="tab-content py-2">
90 <div class="tab-pane" class:active={!bStructuredSearch} id="simple" role="tabpanel">
91 <UrlSubmitForm page="search">
95 class="form-control form-control-sm"
97 value="{api_request_params.q || ''}" />
99 <button type="submit" class="btn btn-primary btn-sm mx-1">Search</button>
100 <input type="hidden" name="viewbox" value="{sViewBox || ''}" />
101 <input type="hidden" name="dedupe" value="{!api_request_params.dedupe ? '' : 1}" />
102 <input type="hidden" name="bounded" value="{api_request_params.bounded ? 1 : ''}" />
103 <input type="hidden" name="accept-language" value="{api_request_params['accept-language'] || ''}" />
104 <input type="hidden" name="countrycodes" value="{api_request_params.countrycodes || ''}"
105 pattern="^[a-zA-Z]{'{2}'}(,[a-zA-Z]{'{2}'})*$" />
106 <input type="hidden" name="limit" value="{api_request_params.limit || ''}" />
107 <input type="hidden" name="polygon_threshold" value="{api_request_params.polygon_threshold || ''}" />
110 <div class="tab-pane" class:active={bStructuredSearch} id="structured" role="tabpanel">
111 <UrlSubmitForm page="search">
112 <input name="street" type="text" class="form-control form-control-sm mr-1"
113 placeholder="House number/Street"
114 value="{api_request_params.street || ''}" />
115 <input name="city" type="text" class="form-control form-control-sm mr-1"
117 value="{api_request_params.city || ''}" />
118 <input id="county" name="county" type="text" class="form-control form-control-sm mr-1"
120 value="{api_request_params.county || ''}" />
121 <input name="state" type="text" class="form-control form-control-sm mr-1"
123 value="{api_request_params.state || ''}" />
124 <input name="country" type="text" class="form-control form-control-sm mr-1"
125 placeholder="Country"
126 value="{api_request_params.country || ''}" />
127 <input name="postalcode" type="text" class="form-control form-control-sm mr-1"
128 placeholder="Postal Code"
129 value="{api_request_params.postalcode || ''}" />
131 <button type="submit" class="btn btn-primary btn-sm">Search</button>
132 <input type="hidden" name="viewbox" value="{sViewBox || ''}" />
133 <input type="hidden" name="dedupe" value="{!api_request_params.dedupe ? '' : 1}" />
134 <input type="hidden" name="bounded" value="{api_request_params.bounded ? 1 : ''}" />
135 <input type="hidden" name="accept-language" value="{api_request_params['accept-language'] || ''}" />
136 <input type="hidden" name="countrycodes" value="{api_request_params.countrycodes || ''}"
137 pattern="^[a-zA-Z]{'{2}'}(,[a-zA-Z]{'{2}'})*$" />
138 <input type="hidden" name="limit" value="{api_request_params.limit || ''}" />
139 <input type="hidden" name="polygon_threshold" value="{api_request_params.polygon_threshold || ''}" />
142 </div> <!-- /tab-content -->
144 <!-- Additional options -->
145 <details id="searchAdvancedOptions">
146 <summary><small>Advanced options</small></summary>
149 <div class="form-check form-check-inline">
150 <label class="form-check-label" for="use_viewbox">apply viewbox</label>
151 <input type="checkbox" class="form-check-input api-param-setting"
152 id="use_viewbox" checked={api_request_params.viewbox} on:change={reset_viewbox}>
157 <div class="form-check form-check-inline">
158 <label class="form-check-label" for="option_bounded">bounded to viewbox</label>
159 <input type="checkbox" class="form-check-input api-param-setting"
160 id="option_bounded" checked={!!api_request_params.bounded} on:change={set_bounded}>
165 <div class="form-check form-check-inline">
166 <label class="form-check-label" for="option_dedupe">deduplicate results</label>
167 <input type="checkbox" class="form-check-input api-param-setting"
168 id="option_dedupe" checked={!!api_request_params.dedupe} on:change={set_dedupe}>
173 <label for="option_limit">Maximum number of results</label>
174 <input type="number" class="form-control form-control-sm d-inline w-auto api-param-setting"
175 data-api-param="limit" id="option_limit" min="1" max="50"
176 value="{api_request_params.limit || ''}"
177 on:change={set_api_param}>
181 <label for="option_polygon_threshold">Polygon simplification</label>
182 <input type="number" class="form-control form-control-sm d-inline w-auto api-param-setting"
183 data-api-param="polygon_threshold" id="option_polygon_threshold" min="0.0" max="1.0" step="0.001"
184 value="{api_request_params.polygon_threshold || ''}"
185 on:change={set_api_param}>
189 <label for="accept_lang">Languages</label>
190 <input type="text" placeholder="e.g. en,zh-Hant" class="form-control form-control-sm d-inline w-auto api-param-setting"
191 data-api-param="accept-language" id="accept_lang" size="15"
192 value="{api_request_params['accept-language'] || ''}"
193 on:change={set_api_param}>
197 <label for="option_ccode">Country Codes</label>
198 <input type="text" placeholder="e.g. de,gb" class="form-control form-control-sm d-inline w-auto api-param-setting"
199 data-api-param="countrycodes" id="option_ccode" size="15"
200 value="{api_request_params.countrycodes || ''}"
201 pattern="^[a-zA-Z]{'{2}'}(,[a-zA-Z]{'{2}'})*$"
202 on:change={set_api_param}>
214 padding: 0.1rem 1rem;
222 #searchAdvancedOptions ul {
223 list-style-type: none;
228 #searchAdvancedOptions li {
229 display: inline-block;
232 border: 1px dotted #ccc;
236 #searchAdvancedOptions label {