I am trying to figure out how to disable the default pinch to zoom functionality on the Google Maps API V3 with Javascript. I tried detecting the touchstart events on the do
I figured out a solution, since my project is full screen the following code did the trick.
var tblock = function (e) { if (e.touches.length > 1) { e.preventDefault() } return false; } document.body.addEventListener("touchmove", tblock, true);