I implemented a iframe
with a Google Maps map, the problem is that I wanted to disable scrool zoom and drag . I've tried this code inside and outside the jQuery function and it does not work:
HTML:
<div id="map"></div>
JS:
var mapOptions = {
zoom: 17,
draggable: false,
center: new google.maps.LatLng(-34.397, 150.644),
zoomControl: false,
scrollwheel: false,
}
map = new google.maps.Map(document.getElementById("map"), mapOptions);