Disable the Ctrl + Scroll to Zoom google maps

后端 未结 5 1560
野性不改
野性不改 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:20

    If you are looking to only hide the overlay but still disable the ability to scroll and zoom (like before), you could use CSS to hide the overlay:

    .gm-style-pbc {
    opacity: 0 !important;
    }
    

    Note this will hide it for mobile as well so you could use something like this to ensure it shows "use two fingers to move the map":

    @media only screen and ( min-width: 980px ) {
    .gm-style-pbc {
    opacity: 0 !important;
    }
    }
    

提交回复
热议问题