polygon_geojson: Nominatim_Config.Search_AreaPolygons ? 1 : 0,
viewbox: search_params.get('viewbox'),
bounded: search_params.get('bounded'),
- dedupe: search_params.get('dedupe'),
+ dedupe: (!search_params.has('dedupe') || search_params.get('dedupe') === '1') ? 1 : 0,
'accept-language': search_params.get('accept-language'),
countrycodes: search_params.get('countrycodes'),
limit: search_params.get('limit'),
update_html_title('Result for ' + api_request_params.q);
- document.querySelector('input[name=q]').focus();
+ if (anyStructuredFieldsSet) {
+ document.querySelector(".nav-tabs a[href='#structured']").click();
+ document.querySelector('input[name=street]').focus();
+ } else {
+ document.querySelector('input[name=q]').focus();
+ }
});
} else {
results_store.set(undefined);