Class: DataMapper::GeoKit::GeographicLocation

Inherits:
Object
  • Object
show all
Defined in:
lib/dm-geokit/resource.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(field, obj) ⇒ GeographicLocation

Returns a new instance of GeographicLocation.



127
128
129
130
131
132
# File 'lib/dm-geokit/resource.rb', line 127

def initialize(field, obj)
  PROPERTY_NAMES.each do |p|
    instance_variable_set("@#{p}",obj.send("#{field}_#{p}"))
  end
  @distance = obj.send("#{field}_distance") if obj.respond_to?("#{field}_distance".to_sym)
end

Instance Attribute Details

#cityObject

Returns the value of attribute city.



126
127
128
# File 'lib/dm-geokit/resource.rb', line 126

def city
  @city
end

#country_codeObject

Returns the value of attribute country_code.



126
127
128
# File 'lib/dm-geokit/resource.rb', line 126

def country_code
  @country_code
end

#distanceObject

Returns the value of attribute distance.



126
127
128
# File 'lib/dm-geokit/resource.rb', line 126

def distance
  @distance
end

#full_addressObject

Returns the value of attribute full_address.



126
127
128
# File 'lib/dm-geokit/resource.rb', line 126

def full_address
  @full_address
end

#latObject

Returns the value of attribute lat.



126
127
128
# File 'lib/dm-geokit/resource.rb', line 126

def lat
  @lat
end

#lngObject

Returns the value of attribute lng.



126
127
128
# File 'lib/dm-geokit/resource.rb', line 126

def lng
  @lng
end

#stateObject

Returns the value of attribute state.



126
127
128
# File 'lib/dm-geokit/resource.rb', line 126

def state
  @state
end

#street_addressObject

Returns the value of attribute street_address.



126
127
128
# File 'lib/dm-geokit/resource.rb', line 126

def street_address
  @street_address
end

#zipObject

Returns the value of attribute zip.



126
127
128
# File 'lib/dm-geokit/resource.rb', line 126

def zip
  @zip
end

Instance Method Details

#to_lat_lngObject



136
137
138
# File 'lib/dm-geokit/resource.rb', line 136

def to_lat_lng
  ::GeoKit::LatLng.new(@lat,@lng)
end

#to_sObject



133
134
135
# File 'lib/dm-geokit/resource.rb', line 133

def to_s
  @full_address
end