X-Git-Url: https://git.openstreetmap.org./nominatim-ui.git/blobdiff_plain/51dab2d73981ff460f7ddc4408df9767ce81ce7a..009e6267f7b7cf46be7958327d83e4cf261334b0:/src/components/Map.svelte diff --git a/src/components/Map.svelte b/src/components/Map.svelte index 37166f6..bc2489f 100644 --- a/src/components/Map.svelte +++ b/src/components/Map.svelte @@ -127,13 +127,16 @@ if (viewbox) { let coords = viewbox.split(','); // ,,, let bounds = L.latLngBounds([coords[1], coords[0]], [coords[3], coords[2]]); - L.rectangle(bounds, { + let viewbox_on_map = L.rectangle(bounds, { color: '#69d53e', weight: 3, dashArray: '5 5', opacity: 0.8, - fill: false - }).addTo(map); + fill: false, + interactive: false + }); + map.addLayer(viewbox_on_map); + dataLayers.push(viewbox_on_map); } if (!aFeature) return; @@ -183,7 +186,7 @@ -
+