Skip to content

Instantly share code, notes, and snippets.

@asathoor
Created May 1, 2018 10:09
Show Gist options
  • Save asathoor/886c016bee4a8458028bc3c8cf820474 to your computer and use it in GitHub Desktop.
Save asathoor/886c016bee4a8458028bc3c8cf820474 to your computer and use it in GitHub Desktop.
Mapbox in Pagebuilder Sample
<!-- the javascript will load the map here -->
<div id='map' style='width: 400px; height: 300px;'></div>
<!-- mapbox style and script -->
<script src='https://api.tiles.mapbox.com/mapbox-gl-js/v0.44.2/mapbox-gl.js'></script>
<link href='https://api.tiles.mapbox.com/mapbox-gl-js/v0.44.2/mapbox-gl.css' rel='stylesheet' />
<!-- mapbox map -->
<script>
mapboxgl.accessToken = 'YOUR-TOKEN-HERE';
var map = new mapboxgl.Map({
container: 'map',
style: 'mapbox://YOUR-STYLE-URL-HERE'
});
</script>
</code>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment