我有javascript google maps项目,我需要禁用任何缩放。 我的设置:
streetViewControl: false,
panControl: false,
disableDoubleClickZoom: true,
TiltGestures: false,
AllGestures: false,
ZoomGestures: false,
ScrollGestures: false,
zoomControl: false,
scrollwheel: false,
navigationControl: false,
mapTypeControl: false,
scaleControl: false,
draggable: true,
disableDefaultUI: true,
minZoom: 8,
maxZoom: 8
适用于桌面设备,但移动设备上的捏合缩放手势仍处于活动状态。
我也尝试这个解决方案:disable pinch and zoom in google maps using JavaScript?但它不适用于我。
如何阻止我的项目放大?