Googlemap seems to not work with touch devices properly.
This happens 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.