Skip to content
This repository has been archived by the owner on Nov 15, 2018. It is now read-only.

Frontend application to query osm-comments-api

License

Notifications You must be signed in to change notification settings

mapbox/deprecated-osm-comments

osm-comments-frontend

Frontend application (running here) to monitor changeset discussions and notes on OSM.

Choose 'changesets' or 'notes' in the top selector, and use the search box to filter the conversations in various ways. For example:

  • users:"Harry Wood" to find conversations by a specified OSM user (try it)
  • bbox:0.3021,51.7253,-0.5576,51.2550 to find conversations happening with the London bounding box (try it)

All filter options documented here

By default, this searches through conversations of users defined in the config file. If you wish to search through conversations of all users, use users:* in the search bar - example.

Development

OSM Comments uses:

Setup

  • Run npm install
  • npm start to start the local dev server
  • Access http://localhost:8080 in your browser

Build

To build the bundle.js in the dist/ folder (required before deploy), make sure you have webpack installed. You may need to do npm install -g webpack if not. Then, in the project folder, just run the command webpack.

Work in progress