Here is my code.
function onMapClick(e) { e.originalEvent.defaultPrevented = true; var orig = e.originalEvent; console.log(orig.target); } map.on('click', onMapClick);
console.log will display a fragment of ie
<img class="leaflet-tile leaflet-tile-loaded" ... />
But I could not find the tile when I use the cluster of booklet markers. How to get a tile in a cluster of booklet markers with a click event on a map?
javascript jquery leaflet
Shri
source share