Update map render
Some checks failed
ci/woodpecker/push/build Pipeline failed

This commit is contained in:
Alessio Davoli 2023-12-12 19:08:56 +01:00
parent e396ca0dc9
commit 86543619e8

View file

@ -12,6 +12,9 @@
let longitude;
let accuracy;
const errorMessage = "Geolocation not available";
const attribution = '&copy; <a href="https://www.openstreetmap.org/copyright">OpenStreetMap</a> contributors';
const openStreetMapTile = 'https://tile.openstreetmap.org/{z}/{x}/{y}.png';
let errored = false;
const watchPosition = async () => {
@ -59,14 +62,10 @@
});
map.setView(pianelloCoordinates, 13);
map.setMaxBounds(map.getBounds());
leaflet
.tileLayer('https://tile.openstreetmap.org/{z}/{x}/{y}.png', {
attribution:
'&copy; <a href="https://www.openstreetmap.org/copyright">OpenStreetMap</a> contributors'
})
.tileLayer(openStreetMapTile, {attribution})
.addTo(map);
}
@ -83,6 +82,7 @@
}
});
</script>
{#if !errored}
<div id="map" in:fade bind:this={mapElement} />
{:else}