Let\'s say I have some overlapping layers and each layer has a click event. When I click on the map, I\'d like to know which layers are clicked on, though the click event st
There is a leaflet plugin for propagating events to the underlying layers: https://github.com/danwild/leaflet-event-forwarder
You can use it in your javascript to enable event-forwarding, e.g.:
const myEventForwarder = new L.eventForwarder({ map: map, events: {click: true, mousemove: false} });