A small app to demonstrate converting arbitrary JSON in to GeoJSON for consumption by GIS applications.
Supports JSON APIs that return either an items
or item
response property.
Each object should have a lat
and long
value.
or
- CodeSandbox — Docs
- Add your configuration to optimize it for CodeSandbox
Download and install the Heroku CLI.
If you haven't already, log in to your Heroku account and follow the prompts to create a new SSH public key.
$ heroku login
or
$ heroku login -i
Use Git to clone application source code to your local machine.
$ heroku git:clone -a APP_NAME
$ cd APP_NAME
Make some changes to the code you just cloned and deploy them to Heroku using Git.
$ git add .
$ git commit -am "make it better"
$ git push heroku master
If you have not used git to deploy your application, or using heroku git:clone -a APP_NAME
has only created an empty repository, you can download the slug that was build when you application was last deployed.
First, install the heroku-slugs CLI plugin with heroku plugins:install heroku-slugs
, then run:
$ heroku slugs:download -a APP_NAME