class Azimuth::Client

Client for the MapQuest Directions API

@see www.mapquestapi.com/directions

Public Class Methods

new(options={}) click to toggle source
# File lib/azimuth/client.rb, line 13
def initialize(options={})
  options = Azimuth.options.merge(options)

  Configuration::VALID_OPTIONS.each do |key|
    send("#{key}=", options[key])
  end
end