Quick Setup
- Add
nuxt-mapbox
&mapbox-gl
dependencies to your project
npx nuxi@latest module add nuxt-mapbox
npm install --save-dev mapbox-gl
- Add
nuxt-mapbox
to themodules
section ofnuxt.config.ts
export default defineNuxtConfig({
modules: [
'nuxt-mapbox'
]
})
- Add your Mapbox API key to the
mapbox
section ofnuxt.config.ts
export default defineNuxtConfig({
modules: [
'nuxt-mapbox'
],
mapbox: {
accessToken: '{API_KEY}'
}
})