X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/a4c67cdab1e5bfcb50c666e32e561c0b5cc35851..a9ef3021320949e46b098b20d467adc82b96bfb9:/website/js/nominatim-ui.js?ds=sidebyside diff --git a/website/js/nominatim-ui.js b/website/js/nominatim-ui.js index 64160c84..337ceb25 100644 --- a/website/js/nominatim-ui.js +++ b/website/js/nominatim-ui.js @@ -249,6 +249,14 @@ jQuery(document).ready(function(){ $('form input[name=lon]').val(lat); $('form').submit(); }); + } else { + var search_params = new URLSearchParams(location.search); + var viewbox = search_params.get('viewbox'); + if (viewbox) { + var coords = viewbox.split(','); // ,,, + var bounds = L.latLngBounds([coords[1], coords[0]], [coords[3], coords[2]]); + L.rectangle(bounds, {color: "#69d53e", weight: 3, dashArray: '5 5', opacity: 0.8, fill: false}).addTo(map); + } } highlight_result(0, false);