phdphd Posted June 12, 2018 Share Posted June 12, 2018 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! Quote Link to comment https://forums.phpfreaks.com/topic/307371-leaflet-map-get-coordinates-of-cluster-on-click/ Share on other sites More sharing options...
phdphd Posted June 12, 2018 Author Share Posted June 12, 2018 markers.on('clusterclick', function(e) .... seems to do the job. Quote Link to comment https://forums.phpfreaks.com/topic/307371-leaflet-map-get-coordinates-of-cluster-on-click/#findComment-1558931 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.