Leaflet / Leaflet.draw

Vector drawing and editing plugin for Leaflet
https://leaflet.github.io/Leaflet.draw/docs/leaflet-draw-latest.html
MIT License
1.98k stars 994 forks source link

Fix for issue #928 #929

Open berniesf opened 5 years ago

berniesf commented 5 years ago

928

line 1260 of leaflet.draw 1.0.4 document.addEventListener('touchstart', L.DomEvent.preventDefault, { passive: false }); replace with

var tempMap = document.getElementById("map");
tempMap.addEventListener('touchstart', L.DomEvent.preventDefault, { passive: false });

or equivalent code.

johnd0e commented 5 years ago

This PR is made over wrong branch (and I even do not see here any relevant commit). Also solution from description does not work for as is, so I've modified it a bit: #930