Allow zooming only with scroll in google maps

后端 未结 1 862
青春惊慌失措
青春惊慌失措 2020-12-16 14:53

Since a few days our users can only zoom when they hit the \"ctrl\" key while scrolling which doesn\'t make sense in our applications.

Is there a way to allow zoomi

相关标签:
1条回答
  • 2020-12-16 15:39

    Add gestureHandling: 'greedy' to your map options during instantiation.

    E.g:

    var map = new google.maps.Map(document.getElementById('map'), {
        center: {0, 0},
        zoom: 8,
        gestureHandling: 'greedy'
      });
    }
    
    0 讨论(0)
提交回复
热议问题