// Prevent mouse scroll over Google maps iframe
$(document).ready(function () {
// you want to enable the pointer events only on click;
$('#myiFrame').addClass('scrolloff'); // set the pointer events to none on doc ready
$('.iframe-container').on('click', function () {
$('#myiFrame').removeClass('scrolloff'); // set the pointer events true on click
});
// you want to disable pointer events when the mouse leave the canvas area;
$("#myiFrame").mouseleave(function () {
$('#myiFrame').addClass('scrolloff'); // set the pointer events to none when mouse leaves the map area
});
});