We are experiencing an issue related to GoogleMaps. The issue is mainly related to touch screens. We were trying to resolve the issue, but so far no success.
We fou
In my experience, the mousedown
, mouseup
, dragstart
, dragend
events work fine in place of touchstart
, touchmove
, touchend
.
google.maps.event.addListener(myMap, "mousedown", function(event){...});
I'm pretty sure that gesture
events are not going to be supported, since those are used for pinch-zoom functionality.
If you need gestures, you'd have to build your own recognizer by tracking mousedown events, storing them in an array, then tracking positions to determine angles, distances etc...