Created
May 13, 2015 06:22
-
-
Save ville6000/b3fafa9bf7b50a8ac252 to your computer and use it in GitHub Desktop.
Disable scroll wheel zoom on Google Maps
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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