pasichnykvasyl / Leaflet.BigImage

A leaflet plugin that allows users to receive a large map area and download it.
https://pasichnykvasyl.github.io/Leaflet.BigImage/
MIT License
80 stars 27 forks source link

Make scroll events work on the numeric input fields #2

Closed IvanSanchez closed 3 years ago

IvanSanchez commented 3 years ago

I like to use my mouse's scrollwheel on any <input type=number>; that includes the one in this plugin.

However, scroll events are being propagated to the map, which zooms the map, which feels weird. These events should be listened to in this control, and their propagation stopped, maybe with something like

this._container.on('wheel', L.DomEvent.stop)