Skip to content

Latest commit

 

History

History
48 lines (32 loc) · 858 Bytes

README.md

File metadata and controls

48 lines (32 loc) · 858 Bytes

English / 日本語

mapbox-geo-circle-layer example

This is an example of how to use mapbox-geo-circle-layer.

Please see src/components/TheMap.vue.

Configuring the Mapbox access token

You have to configure the Mapbox access token in src/configs/mapbox-config.ts. The file is never pushed to the repository, but you can find an example in src/configs/mapbox-config.example.ts.

export default {
  accessToken: 'Your Mapbox access token here'
}

Resolving dependencies

npm install

Running dev server

npm run dev

Type-checking

npm run type-check

Linting with ESLint

npm run lint

Formatting with Prettier

npm run format