This question already has an answer here:
If you're browsing with an embedded maps iframe using your trackpad or mouse, you can potentially trap yourself into the Maps' zooming capabilities, which is really annoying.
Try it here: https://developers.google.com/maps/documentation/embed/guide#overview
Is there a way to prevent this?
I'm re-editing the code written by #nathanielperales it really worked for me. Simple and easy to catch but its work only once. So I added mouseleave() on JavaScript. Idea adapted from #Bogdan And now its perfect. Try this. Credits goes to #nathanielperales and #Bogdan. I just combined both idea's. Thank you guys. I hope this will help others also...
HTML
CSS
jQuery
Improvise - Adapt - Overcome
And here is an jsFiddle example.
I`ve created a very simple jQuery plugin to resolve the problem. This plugin automatically wraps the map with a transparent div and a unlock button, so you'll must longpress them to activate navigation. Check it at https://diazemiliano.github.io/googlemaps-scrollprevent/
Here's some example.
yes, it is possible through scrollwheel:false.
source
You can disable it with css.
you can set scroll-wheel: False; in the css property of the tag or tag to disable scrolling from Google maps when zoomed-in & zoomed-out.
This has been answered here => Disable mouse scroll wheel zoom on embedded Google Maps by Bogdan. What it does is that it will disable the mouse until you click onto the map and the mouse start working again, if you move the mouse out from the map the mouse will be disabled again.
Note: Does not work on IE < 11 (Working fine on IE 11)
CSS:
Script:
HTML: (just need to put correct id as defined in css and script)