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
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;
}
}