Class: Geocoder::Result::MaxmindLocal
- Inherits:
-
Base
- Object
- Base
- Geocoder::Result::MaxmindLocal
show all
- Defined in:
- lib/geocoder/results/maxmind_local.rb
Instance Attribute Summary
Attributes inherited from Base
#cache_hit, #data
Class Method Summary
collapse
Instance Method Summary
collapse
Methods inherited from Base
#initialize, #latitude, #longitude, #province, #province_code
Class Method Details
.response_attributes ⇒ Object
39
40
41
|
# File 'lib/geocoder/results/maxmind_local.rb', line 39
def self.response_attributes
%w[ip]
end
|
Instance Method Details
#address(format = :full) ⇒ Object
6
7
8
9
|
# File 'lib/geocoder/results/maxmind_local.rb', line 6
def address(format = :full)
s = state.to_s == "" ? "" : ", #{state}"
"#{city}#{s} #{postal_code}, #{country}".sub(/^[ ,]*/, "")
end
|
#city ⇒ Object
15
16
17
|
# File 'lib/geocoder/results/maxmind_local.rb', line 15
def city
@data[:city_name]
end
|
#coordinates ⇒ Object
11
12
13
|
# File 'lib/geocoder/results/maxmind_local.rb', line 11
def coordinates
[@data[:latitude], @data[:longitude]]
end
|
#country ⇒ Object
27
28
29
|
# File 'lib/geocoder/results/maxmind_local.rb', line 27
def country
@data[:country_name]
end
|
#country_code ⇒ Object
31
32
33
|
# File 'lib/geocoder/results/maxmind_local.rb', line 31
def country_code
@data[:country_code2]
end
|
#postal_code ⇒ Object
35
36
37
|
# File 'lib/geocoder/results/maxmind_local.rb', line 35
def postal_code
@data[:postal_code]
end
|
#state ⇒ Object
19
20
21
|
# File 'lib/geocoder/results/maxmind_local.rb', line 19
def state
@data[:region_name]
end
|
#state_code ⇒ Object
23
24
25
|
# File 'lib/geocoder/results/maxmind_local.rb', line 23
def state_code
"" end
|