mirror of
https://github.com/a-nyx/maputnik-with-pmtiles.git
synced 2024-12-28 02:05:25 +01:00
29 lines
438 B
Markdown
29 lines
438 B
Markdown
# Mapolo
|
|
|
|
A visual style editor for MapboxGL.
|
|
|
|
## Develop
|
|
|
|
Install the deps, start the dev server and open the web browser on `http://localhost:8888/`.
|
|
|
|
```bash
|
|
# install dependencies
|
|
npm install
|
|
# start dev server
|
|
npm start
|
|
```
|
|
|
|
Build a production package for distribution.
|
|
|
|
```
|
|
npm run build
|
|
```
|
|
|
|
Lint the JavaScript code.
|
|
|
|
```
|
|
# install lint dependencies
|
|
npm install --save-dev eslint eslint-plugin-react
|
|
# run linter
|
|
npm run lint
|
|
```
|