Muhammad Muzaffar
Results
2
comments of
Muhammad Muzaffar
I encountered the same problem. When I add draw tool, other layers click event stop working for mobile browsers. However, the click event works fine for desktop browsers.
@bren96 this is how I solved it ``` map.on('click', 'points', function (e) { show_popup(e); }); map.on('touchend', 'points', function (e) { show_popup(e); }); ``` i.e., by adding events for both 'click'...