Google maps - disable zoom control with scroll

I ran into same problem as this fella here: How to Enable CTRL/CMD + Scroll for Embedded Google Maps

My goal is to:

  1. Allow zoom control, but with buttons, not with mouse scroll
  2. Allow dragging
  3. 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'