Skip to content

Instantly share code, notes, and snippets.

@williamscraigm
Last active March 26, 2021 05:26
Show Gist options
  • Save williamscraigm/c2e25e95cc63be670f7f1f06dfd3a6d2 to your computer and use it in GitHub Desktop.
Save williamscraigm/c2e25e95cc63be670f7f1f06dfd3a6d2 to your computer and use it in GitHub Desktop.
Style rotation in VTs
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8' />
<title></title>
<meta name='viewport' content='initial-scale=1,maximum-scale=1,user-scalable=no' />
<script src='https://api.tiles.mapbox.com/mapbox-gl-js/v1.12.0/mapbox-gl.js'></script>
<link href='https://api.tiles.mapbox.com/mapbox-gl-js/v1.12.0/mapbox-gl.css' rel='stylesheet' />
<style>
body { margin:0; padding:0; }
#map { position:absolute; top:0; bottom:0; width:100%; }
</style>
</head>
<body>
<div id='map'></div>
<script>
mapboxgl.accessToken = 'pk.eyJ1IjoiYWp0dXJuZXIiLCJhIjoiQnhpcXJJSSJ9.ZnDyVBoCANqU3UmDMJ5nng';
var map = new mapboxgl.Map({
container: 'map', // container id
style: 'https://www.arcgis.com/sharing/rest/content/items/d5176fe6d3cb4280b4471146fce6a237/resources/styles/root.json', // stylesheet location
zoom: 4,
bearing: 90,
center: [-77, 38.9] // starting position [lng, lat]
});
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment