-
Notifications
You must be signed in to change notification settings - Fork 60
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Can't drag map after mouseover circle marker #44
Comments
The problem is here: _handleMouseOut: function (e) {
if (!draggingMap) {
this._disableInteractions(); // All works normal if commnt this line
}
} Why need this instead simple |
Temporary removed all |
imShara
referenced
this issue
Aug 8, 2019
MinerMax555
added a commit
to MinerMax555/Leaflet.GestureHandling
that referenced
this issue
Jan 25, 2021
If someone is still fighting with the issue here is a workaround without modifying the lib itself: circleMarker.on('mouseout', () =>
setTimeout(() => {
this.map.dragging.enable();
this.map.scrollWheelZoom.enable();
if (this.map.tap) {
this.map.tap.enable();
}
}),
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Example: https://jsfiddle.net/ea1xou73/1/
How to reproduce:
Maybe duplicate #11
The text was updated successfully, but these errors were encountered: