class Nokia::Here::Resource::Routing::Route

Public Class Methods

new() click to toggle source
# File lib/nokia/here/resource/routing/route.rb, line 7
def initialize
  super()
  @method_name = 'getroute'
end

Public Instance Methods

calculate_route(options={}) click to toggle source
# File lib/nokia/here/resource/routing/route.rb, line 12
def calculate_route(options={})
  @method_name = 'calculateroute'
  self.get(options)
end
get(options={}) click to toggle source
Calls superclass method Nokia::Here::Resource::Base#get
# File lib/nokia/here/resource/routing/route.rb, line 22
def get(options={})
  super(options)
end
get_route(options={}) click to toggle source
# File lib/nokia/here/resource/routing/route.rb, line 17
def get_route(options={})
  @method_name = 'getroute'
  self.get(options)
end