Tagged Questions
0
votes
1answer
159 views
How to keep bound popups from opening on [click]?
I am working on a map application which creates and binds popups on markers and polyline objects.
The popups are created and bound lazily, i.e. ad-hoc when a user clicks on a specific object. The ...
6
votes
3answers
409 views
How do I stop event propagation with rightclick on Leaflet marker?
I didn't find a rightclick event in Leaflet markers so I started listening to the mousedown event. In the method that resolves this event I check
if (event.originalEvent.button == 2) {
...