Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/drklrd/osm-api-explorer
This is a simple tool to explore OSM API.
https://github.com/drklrd/osm-api-explorer
api-explorer osm osm-api
Last synced: 10 days ago
JSON representation
This is a simple tool to explore OSM API.
- Host: GitHub
- URL: https://github.com/drklrd/osm-api-explorer
- Owner: drklrd
- Created: 2017-06-25T18:10:49.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2021-08-12T11:07:34.000Z (over 3 years ago)
- Last Synced: 2024-11-06T01:58:37.204Z (about 2 months ago)
- Topics: api-explorer, osm, osm-api
- Language: JavaScript
- Size: 936 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# OSM API Explorer
This is a simple tool to explore OSM API. This uses osm-auth (https://github.com/osmlab/osm-auth) for OSM authentication. The editor used is the Ace-editor(https://ace.c9.io/).
This uses OSM dev server as a testing environment to prevent unnecessary data/modification on LIVE server. The account used for OSM LIVE server and DEV server are different. You need to have a DEV server account for this tool. If you don't have DEV server account, create one by visiting http://master.apis.dev.openstreetmap.org/# LIVE Demo
View the demo at : http://osm-api-explorer.herokuapp.com/
![Explorer Image](https://raw.githubusercontent.com/drklrd/osm-api-explorer/master/osm-api-explorer.png)
### Installation
```sh
$ npm install
$ cp sample-config.js config.js
```
and modify config.js according your OSM app details (DEV server)```sh
$ npm run development (in one terminal)
$ node server.js (in another terminal)
```
'npm run development' in one terminal to start the client side bundling and 'node server.js' in another terminal to start the node server.