Created
December 7, 2015 19:52
-
-
Save gustavompo/fa9266fb5c65abd9085a to your computer and use it in GitHub Desktop.
This file contains 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
//Gets the current zoom level | |
var zoomLevel = map.getZoom(); | |
//Sets the zoom level | |
map.setZoom(10); | |
//Increases the zoom level by 1 | |
map.zoomIn(1); | |
//Decreases the zoom level by 4 | |
map.zoomOut(4); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment