mirror of
https://github.com/osm-search/Nominatim.git
synced 2026-02-16 15:47:58 +00:00
display viewbox on map
This commit is contained in:
@@ -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(','); // <x1>,<y1>,<x2>,<y2>
|
||||
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);
|
||||
|
||||
2
website/js/url-search-params.js
Normal file
2
website/js/url-search-params.js
Normal file
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user