michaeldank
9/11/2017 - 12:35 AM

This code disables the scroll move function on google maps until you click on the map once. Most effective on Mobile when it becomes hard t

This code disables the scroll move function on google maps until you click on the map once. Most effective on Mobile when it becomes hard to scroll when you get to the map.

<script>
$(document).ready(function(){
            //Change height to match map
$('iframe[src*="google.com/maps"]').parent().prepend('<div class="mapOverlay" style="background:transparent; position:absolute; width:100%; height:400px; top:0; z-index:1;" onclick="style.height=\'0\'" />');
});
</script>