function createMap(container) {
const attribution = Nominatim_Config.Map_Tile_Attribution;
+
let map = new L.map(container, {
- attributionControl: (attribution && attribution.length),
+ attributionControl: false,
scrollWheelZoom: true, // !L.Browser.touch,
touchZoom: false,
center: [
],
zoom: Nominatim_Config.Map_Default_Zoom
});
+ if (typeof Nominatim_Config.Map_Default_Bounds !== 'undefined'
+ && Nominatim_Config.Map_Default_Bounds) {
+ map.fitBounds(Nominatim_Config.Map_Default_Bounds);
+ }
+
+ if (attribution && attribution.length) {
+ L.control.attribution({ prefix: '<a href="https://leafletjs.com/">Leaflet</a>' }).addTo(map);
+ }
L.tileLayer(Nominatim_Config.Map_Tile_URL, {
attribution: attribution
clickable: false
}
);
+ cm.bindTooltip(`Search (${position_marker[0]},${position_marker[1]})`).openTooltip();
cm.addTo(map);
dataLayers.push(cm);
}
if (viewbox) {
let coords = viewbox.split(','); // <x1>,<y1>,<x2>,<y2>
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;
let circle = L.circleMarker([lat, lon], {
radius: 10, weight: 2, fillColor: '#ff7800', color: 'blue', opacity: 0.75
});
+ if (position_marker) { // reverse result
+ circle.bindTooltip('Result').openTooltip();
+ }
map.addLayer(circle);
dataLayers.push(circle);
}
<MapPosition />
<div id="map" use:mapAction />
-<div id="show-map-position" class="leaflet-bar btn btn-sm btn-outline-secondary"
+<button id="show-map-position" class="leaflet-bar btn btn-sm btn-outline-secondary"
on:click|stopPropagation={show_map_position_click}
->show map bounds</div>
+>show map bounds</button>
<style>
#map {