Created
March 15, 2019 00:07
-
-
Save harllos/d59fc75e67afe800a09b208218480f96 to your computer and use it in GitHub Desktop.
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
mapboxgl.accessToken = 'seu token vai aqui'; | |
var map = new mapboxgl.Map({ | |
container: 'map', | |
style: "seu map style vai aqui. você poderá criar um estilizado ou utilizar um padrão do Mapbox. | |
Também é possível utilizar uma solução do OpenStreet Map ou similares, que não é o escopo deste tutorial.", | |
center: [-43.01,-22.495], #escolha uma latitude/longitude inicial para seu mapa | |
zoom: 8, #escolha um zoom inicial | |
hash: true | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment