Last active
April 6, 2018 23:41
-
-
Save mudpuddle/68c7c671d638430b3b7e1f316842fdde to your computer and use it in GitHub Desktop.
Static Mapbox Window
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
function printMap() { | |
var currentLoc = map.getCenter(); | |
var currentZoom = map.getZoom(); | |
return newWindow = window.open( | |
"https://api.mapbox.com/styles/v1/mapbox/outdoors-v10/static/" + currentLoc.lng + "," + currentLoc.lat + "," + currentZoom + ",0,0/600x600?access_token=<API_KEY>", | |
"_blank", | |
"toolbar=yes,width=750,height=750" | |
); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment