X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/c4e72e6ca9a72a9e151ca189cb8febacae36ecfa..0ae62280ab348e3fc779558a119f5f93ebd2583b:/website/js/nominatim-ui.js diff --git a/website/js/nominatim-ui.js b/website/js/nominatim-ui.js index ccd403fa..337ceb25 100644 --- a/website/js/nominatim-ui.js +++ b/website/js/nominatim-ui.js @@ -143,7 +143,7 @@ jQuery(document).ready(function(){ ].join(','); } function map_link_to_osm(){ - return "http://openstreetmap.org/#map=" + map.getZoom() + "/" + map.getCenter().lat + "/" + map.getCenter().lng; + return "https://openstreetmap.org/#map=" + map.getZoom() + "/" + map.getCenter().lat + "/" + map.getCenter().lng; } function get_result_element(position){ @@ -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);