The OAM-Browser is a part of the OpenAerialMap project. See the OpenAerialMap repository for more information about the project and contribute to the development.
Submit any issues and feedback regarding the imagery browser in the issue tracker.
Access the site at http://hotosm.github.io/oam-browser/.
To set up the development environment for this website, you'll need to install the following on your system:
- Node and npm
- Ruby and Bundler, preferably through something like rvm
- Gulp ( $ npm install -g gulp )
After these basic requirements are met, run the following commands in the website's folder:
$ npm install
Will also run bundle install
Source code goes in app
and after building it will be copied to dist
.
$ gulp
Compiles the compass files, javascripts, and launches the server making the site available at http://localhost:3000/
The system will watch files and execute tasks whenever one of them changes.
The site will automatically refresh since it is bundled with livereload.
Compile the compass files, javascripts. Use this instead of gulp
if you don't want to watch.
$ gulp build
The same as gulp
but without livereloading the website.
$ gulp no-reload