fix precision on click

This commit is contained in:
vcoppe
2024-06-12 18:52:01 +02:00
parent 71ff8ad727
commit 3efcb5fd61

View File

@@ -142,8 +142,8 @@
}
function setCoordinates(e: any) {
latitude = e.lngLat.lat;
longitude = e.lngLat.lng;
latitude = e.lngLat.lat.toFixed(6);
longitude = e.lngLat.lng.toFixed(6);
}
onMount(() => {