几天以来,我们的用户只有在点击" ctrl"滚动时键,在我们的应用程序中没有意义。
有没有办法只允许在Google地图中滚动(就像之前一样)进行缩放?
我已经看到了这个" ctrl + scroll" force现在也在谷歌地图api参考(截图)。
Screenshot from the Google Maps Javascript API reference which shows the new message
答案 0 :(得分:19)
在实例化期间将gestureHandling: 'greedy'
添加到地图选项中。
E.g:
var map = new google.maps.Map(document.getElementById('map'), {
center: {0, 0},
zoom: 8,
gestureHandling: 'greedy'
});
}