A gem to communicate with the MapQuest web services.
To get an API key visit http://developer.mapquest.com
Add this line to your application's Gemfile:
gem 'mapquest'
And then execute:
$ bundle
Or install it yourself as:
$ gem install mapquest
require 'mapquest'
# Instantiate the API using an API key
mapquest = MapQuest.new API_KEY
# Get geolocation data
data = mapquest.geocoding.decode :location => "London, UK"
# Get lat/long coordinates of all the locations found
data.locations.each { |location| puts location[:latLng] }
- Fork it
- 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 new Pull Request