5 chiffres apres la virgule quand on clique sur la carte
authorLudovic CHEVALIER <l.chevalier@lespetitsdebrouillards-ra.org>
Sat, 7 Jan 2012 17:18:57 +0000 (18:18 +0100)
committerLudovic CHEVALIER <l.chevalier@lespetitsdebrouillards-ra.org>
Sat, 7 Jan 2012 17:18:57 +0000 (18:18 +0100)
contenu/page-carte_de_sites.html

index 7a4f81b..1fbbaca 100644 (file)
@@ -57,7 +57,7 @@
        var popup = new L.Popup();
 
        function onMapClick(e) {
-               var latlngStr = '(' + e.latlng.lat.toFixed(3) + ', ' + e.latlng.lng.toFixed(3) + ')';
+               var latlngStr = '(' + e.latlng.lat.toFixed(5) + ', ' + e.latlng.lng.toFixed(5) + ')';
                popup.setLatLng(e.latlng);
                popup.setContent("You clicked the map at " + latlngStr);
                map.openPopup(popup);