Hi All,
Based on the page https://leaflet.github.io/Leaflet.markercluster/example/marker-clustering-realworld.388.html, I am building an alternative to Google maps using Leaflet.
I need to get the coordinates of the point the user clicks on the map, whether that point corresponds to a cluster or not.
For points that are not clusters the following works :
map.on('click', function(e) { console.log("Lat, Lon : " + e.latlng.lat + ", " + e.latlng.lng) })
For points that are clusters the following works, but only if the cluster contains no more than one marker :
markers.on('click', function(e) { console.log("Lat, Lon : " + e.latlng.lat + ", " + e.latlng.lng) })
What should I use to make it work for clusters containing more than one markers ?
Thanks!