X-Git-Url: https://git.openstreetmap.org./nominatim-ui.git/blobdiff_plain/267d5108c3de7c23120a2d29f6cfba9e4ac90d46..586f7f836124af2ea87b5f580c9e92b671ba4b1f:/src/assets/js/detailpage.js diff --git a/src/assets/js/detailpage.js b/src/assets/js/detailpage.js index 919e19a..3a95187 100644 --- a/src/assets/js/detailpage.js +++ b/src/assets/js/detailpage.js @@ -54,8 +54,7 @@ function init_map_on_detail_page(lat, lon, geojson) { } -jQuery(document).ready(function () { - if (!$('#details-page').length) { return; } +function details_page_load() { var search_params = new URLSearchParams(window.location.search); // var place_id = search_params.get('place_id'); @@ -64,6 +63,7 @@ jQuery(document).ready(function () { place_id: search_params.get('place_id'), osmtype: search_params.get('osmtype'), osmid: search_params.get('osmid'), + class: search_params.get('class'), keywords: search_params.get('keywords'), addressdetails: 1, hierarchy: (search_params.get('hierarchy') === '1' ? 1 : 0), @@ -111,4 +111,4 @@ jQuery(document).ready(function () { alert('invalid input'); } }); -}); +}