When dragging a marker
- I click the left mouse button and hold it --> this executes dragstart
- I move the marker around and release the mouse button --> it call dragend and click
When searching through the leaflet source I can only find the following hooks for dragend in L.Handler.MarkerDrag:
_onDragEnd: function (e) {
this._marker
.fire('moveend')
.fire('dragend', e);
}
"leaflet": "^0.7.7"and the chrome version is50.0.2661.94 m. It's not working in Firefox either. - Amio.io