A fast, simple editor for map data. Read more on Mapbox, macwright.org.
Tools
- Using geojson.io with GitHub is better with the Chrome Extension
- geojsonio-cli lets you shoot geojson from your terminal to geojson.io! (with nodejs)
- geojsonio.py lets you shoot geojson from your terminal to geojson.io! (with python)
You can interact with geojson.io programmatically via URL parameters. Here is an example of geojson encoded into the URL:
Full API documentation can be found in API.md.
Install browserify'ied libraries:
`npm install`
Browserify libraries, concat other libraries, build minimal d3:
`make`
Build tailwind css:
`npx tailwindcss -i ./css/tailwind_src.css -o ./css/tailwind_dist.css`
Run a local server to preview your changes.
A streamlined dev workflow is possible with the Live Server
and Run on Save
VS Code extensions:
- Start a live server using
Live Server's
"Go Live" button Run on Save
reads it settings from./vscode/settings.json
and will listen for changes to any file, then run both themake
command and build the tailwind css file on each save.