Skip to content

Instantly share code, notes, and snippets.

@mudpuddle
Last active April 6, 2018 23:41
Show Gist options
  • Save mudpuddle/68c7c671d638430b3b7e1f316842fdde to your computer and use it in GitHub Desktop.
Save mudpuddle/68c7c671d638430b3b7e1f316842fdde to your computer and use it in GitHub Desktop.
Static Mapbox Window
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