You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
The text was updated successfully, but these errors were encountered:
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.
The text was updated successfully, but these errors were encountered: