Skip to content

Instantly share code, notes, and snippets.

@AlanPew
Last active September 11, 2020 11:32
Show Gist options
  • Save AlanPew/3172482ccd6ab8c9fd80fc8e16b3b23c to your computer and use it in GitHub Desktop.
Save AlanPew/3172482ccd6ab8c9fd80fc8e16b3b23c to your computer and use it in GitHub Desktop.
ESRI OSM VECTOR TILES
<!DOCTYPE html>
<html>
<head>
<meta name='viewport' content='initial-scale=1,maximum-scale=1,user-scalable=no' />
<script src='https://api.tiles.mapbox.com/mapbox-gl-js/v1.10.0/mapbox-gl.js'></script>
<link href='https://api.tiles.mapbox.com/mapbox-gl-js/v1.10.0/mapbox-gl.css' rel='stylesheet' />
<link href='external.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.eyJ1Ijoic2x5IiwiYSI6IjdiYzFmZmY5NTExOTQ0MTExMGVhZDBkZTIwMmRlYjJhIn0.hOz2brurCBMGWGU5EI-waQ';
var map = new mapboxgl.Map({
container: 'map',
style: 'https://dl.dropboxusercontent.com/s/l1ig7hfeywdrmtt/esri_osm_20190321.json?dl=1?raw=1',
center: [-100, 41],
zoom: 3.5,
hash: true
});
map.addControl(new mapboxgl.NavigationControl());
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment