Fix size of map pin
All checks were successful
ci/woodpecker/push/build Pipeline was successful

This commit is contained in:
Alessio Davoli 2023-12-18 16:36:46 +01:00
parent 5883ca1639
commit b9d4b1ff80

View file

@ -42,7 +42,7 @@
const icon = leaflet.icon({
iconUrl: mapMarkerIcon,
iconSize: [100, 100], // size of the icon
iconSize: [75, 75], // size of the icon
});
userMarker = leaflet.marker([latitude, longitude], {icon}).addTo(map);