I ran into same problem as this fella here: How to Enable CTRL/CMD + Scroll for Embedded Google Maps
My goal is to:
- Allow zoom control, but with buttons, not with mouse scroll
- Allow dragging
- Disable Ctrl+Scroll behavior
Right now, you can’t do that. I looked in source code, it doesn’t pass scrollwheel
option, it changes gestureHandling
instead. But it should pass both. To disable this annoying Ctrl+Scroll, two options needs to be passed:
scrollwheel: false,
gestureHandling: 'greedy'