webix-hub / webix

Stable releases of Webix UI - JavaScript library for building mobile and desktop web apps

Home Page:http://webix.com

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Drag move map does not work for google maps on touch devices. (Android/iOS).

mzmrk opened this issue · comments

commented

Googlemap seems to not work with touch devices properly.
This happends when root div is generated by webix.
I cannot drag move map using touch on android and iOS devices. It can be replicated in emulators on google chrome.

Solution:
in file webix_debug.js
in _touchmove function line:
return webix.html.preventEvent(e);
is blocking googlemaps movement.
just replace it with simple return.

webix.Touch.limit(true); does not fix touch issues with map.
webix.Touch.disable(); fixed map movement, but now nothing works using touch, besides scrolling and google map.