I am using the leaflet.js and integrate it with my code very easily . I am unable to find the co-ordinates on drag end event like in google map . So please can anyone suggest how to do that . Any kind of help and suggestion is appreciated.
var map = L.map('map', {center: latlng, zoom: 13, layers: [tiles]});var markers = L.markerClusterGroup({ chunkedLoading: true });showData(map,markers);map.on('dragend',function(e){ console.log("console.log", e); console.log(e.target.latLngToContainerPoint); //showData(map,markers,e.target._animateToCenter.lat, e.target._animateToCenter.lng , e.distance)});