javascript Reprojecting Leaflet Coordinates Leaflet has a great little function that returns the coordinates of a point clicked on the map. var popup = L.popup(); function onMapClick(e) { popup .setLatLng(e.latlng) .setContent("You clicked the map at " + e.latlng.toString()) .openOn(map); } map.on('click', onMapClick); When the user clicks on