Rails plugin that stores the browser geolocation
Track your visits location using the Geolocation Browser API easily
Location is stored in the session, it doesn’t generate any model so you can persist it in anyway you like.
You get:
When someone visits your site Spyme will check if the browser support the Geolocation API and if the user accepts to be tracked it automatically stores the the location in the session.
Use current_location
to access the Location object for the current visit.
Use Geocoder with Spyme to track your model objects near the visit current location.
Venue.near(current_location.coords, 20) # venues within 20 miles current visit location
Add this line to your application’s Gemfile:
gem 'spyme'
Lastly, include the javascript file in app/assets/javascripts/application.js
after jQuery.
//= require jquery
//= require spyme
Spyme automatically stores the current location at the session you can access in your controller with this helper method
current_location
Sometimes the user deny the tracking or the browser doesn’t support geolocation, you can check if the current location is valid
current_location.valid?
Also the Spyme::Model::Location
object has some useful methods
current_location.to_hash
returns { latitude: # tracked_latitude, longitude: # tracked_longitude }
current_location.coords
returns [ # tracked_latitude, # tracked_longitude]
Everyone is encouraged to help improve this project. Here are a few ways you can help: