How to get geo coordinates on clicked location using leaflet? I try something like ..
$scope.$on('leafletDirectiveMap.geojsonClick', function (e) {
alert("Lat, Lon : " + e.latlng.lat + ", " + e.latlng.lng)
});
but it didn't work.