Skip to content

Instantly share code, notes, and snippets.

@ville6000
Created May 13, 2015 06:22
Show Gist options
  • Save ville6000/b3fafa9bf7b50a8ac252 to your computer and use it in GitHub Desktop.
Save ville6000/b3fafa9bf7b50a8ac252 to your computer and use it in GitHub Desktop.
Disable scroll wheel zoom on Google Maps
var map;
var mapOptions = {
zoom: 15,
scrollwheel: false,
center: new google.maps.LatLng( latitude, longitude )
};
map = new google.maps.Map(
document.getElementById( 'map-canvas' ),
mapOptions
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment