Skip to content

Instantly share code, notes, and snippets.

@mudpuddle
Last active April 6, 2018 19:22
Show Gist options
  • Save mudpuddle/d6ae7d616171643a082061867132ed99 to your computer and use it in GitHub Desktop.
Save mudpuddle/d6ae7d616171643a082061867132ed99 to your computer and use it in GitHub Desktop.
Basic Mapbox Map
myLatLng = [-120.5, 44.14];
zoom = 7;
mapboxgl.accessToken = 'API_KEY'; //provided by mapbox
map = new mapboxgl.Map({
container: 'map-canvas', // container id
style: 'mapbox://styles/mapbox/outdoors-v9', // stylesheet location
center: myLatLng, // starting position [lng, lat]
zoom: zoom // starting zoom
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment