digidem / leaflet-side-by-side

A Leaflet control to add a split screen to compare two map overlays
http://lab.digital-democracy.org/leaflet-side-by-side/
MIT License
351 stars 111 forks source link

Dragging not possible anymore on non-touch devices #46

Closed tkempken closed 2 years ago

tkempken commented 2 years ago

Dragging of split slider is not possible (anymore) due to an incorrect assumption of the L.Browser module.

`- on(range, L.Browser.touch ? 'touchstart' : 'mousedown', cancelMapDrag, this)

Tested with Google Chrome 105.0.5195.102 and version earlier. Android/iOS is still working, only desktop browsers are affected.

Background;:

L.Browser.touch stays true even if you are using a non-touch device. It would be better to rely on global window variable like other leaflet plugins.

tkempken commented 2 years ago

wrong repo - sorry