diff --git a/template/map.twig b/template/map.twig index b8eb4fd..e75b39d 100644 --- a/template/map.twig +++ b/template/map.twig @@ -78,7 +78,13 @@ L.control.mousePosition({ position: 'bottomright', - separator: '; ' + separator: '; ', + lngFormatter: (x) => { + return x.toFixed(3) + }, + latFormatter: (y) => { + return y.toFixed(3) + } }).addTo(map);