Skip to content

Instantly share code, notes, and snippets.

@tsamaya
Created December 2, 2015 23:24
Show Gist options
  • Save tsamaya/b951e65baf801f998c75 to your computer and use it in GitHub Desktop.
Save tsamaya/b951e65baf801f998c75 to your computer and use it in GitHub Desktop.
MapBox GL
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title></title>
<meta name="viewport" content="initial-scale=1,maximum-scale=1,user-scalable=no" />
<link href="https://api.tiles.mapbox.com/mapbox-gl-js/v0.11.5/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 src="https://api.tiles.mapbox.com/mapbox-gl-js/v0.11.5/mapbox-gl.js"></script>
<script>
mapboxgl.accessToken = 'pk.eyJ1IjoidHNhbWF5YSIsImEiOiJOc0tQbS00In0.OaIyUMtbCLXvS8f8zTY5gA';
var map = new mapboxgl.Map({
container: 'map', // container id
style: 'mapbox://styles/mapbox/streets-v8', //stylesheet location
center: [5.73134, 45.18478], // starting position longitude, latitude
zoom: 10 // starting zoom
});
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment