GmapPlotter
GmapPlotter is a little sinatra app for plotting gps points on a google map.
##Demo app
A demo app runs on heroku: https://gmap-plotter.herokuapp.com/
Installation
Add this line to your application's Gemfile:
gem 'gmap_plotter'
And then execute:
$ bundle
Or install it yourself as:
$ gem install gmap_plotter
Usage
###Running To run the app open a terminal and enter the following command:
gmap_plotter
This command starts the app on http://localhost:3000
.
###Deployment
You can deploy you're own gmap plotter app by creating a config.ru
rack config file.
Example config.ru
file:
require 'gmap_plotter'
run GmapPlotter::Server
And run it via:
rackup config.ru -p 3000
Contributing
- Fork it ( https://github.com/[my-github-username]/gmap_plotter/fork )
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create a new Pull Request