Disable the Ctrl + Scroll to Zoom google maps

后端 未结 5 1608
野性不改
野性不改 2021-01-30 07:59

Does anybody know how to disable the CTRL + Scroll?

First when the mouse wheel was moved the Map would Zoom in/out. But now it asks to press

5条回答
  •  刺人心
    刺人心 (楼主)
    2021-01-30 08:42

    Nesting the gestureHandling within an options property worked for me on version "3.35.6".

    map = new google.maps.Map(document.getElementById('map'), {
            zoom: 12,
            options:{
                gestureHandling: 'greedy'
            }
        });
    

提交回复
热议问题