Project

cloudmate

0.0
No commit activity in last 3 years
No release in over 3 years
CloudMade API ruby client library
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 4.1
~> 0.9.2.2
~> 1.8.11

Runtime

 Project Readme

Cloudmate

CloudMade API ruby client library

Installation

Add this line to your application's Gemfile:

gem 'cloudmate'

And then execute:

$ bundle

Or install it yourself as:

$ gem install cloudmate

Usage

Cloudmate.configure do |config|
  config.api_key = 'CLOUDMADE_API_KEY'
end

Geocoding

http://developers.cloudmade.com/projects/show/geocoding-http-api

Free form address search:

Cloudmate.geocode(q: 'Leinfelden-Echterdingen Germany Karlstr. 12')

Structured address search:

Cloudmate.geocode(q: { country: 'Germany', street: 'Karlstr.', city: 'Leinfelden-Echterdingen', zip: '70771', housenumber: '12' })

Reverse geocoding:

Cloudmate.geocode(q: [48.77615073, 9.16416465])

Routing

http://developers.cloudmade.com/wiki/routing-http-api/Documentation

Cloudmate.route(points: [[47.25976, 9.58423], [47.26117, 9.59882]], type: :bicycle)

Contributing Build Status

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request