Jump to content

Leaflet Map Get Coordinates Of Cluster On Click


phdphd

Recommended Posts

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!

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.