Last active
April 6, 2018 19:22
-
-
Save mudpuddle/d6ae7d616171643a082061867132ed99 to your computer and use it in GitHub Desktop.
Basic Mapbox Map
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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