Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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.

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.