Skip to content
Snippets Groups Projects
Commit 897e6ffa authored by alno's avatar alno
Browse files

Sub state for Google result

parent 53113ff8
No related branches found
No related tags found
No related merge requests found
......@@ -35,6 +35,18 @@ module Geocoder::Result
end
end
def sub_state
if state = address_components_of_type(:administrative_area_level_2).first
state['long_name']
end
end
def sub_state_code
if state = address_components_of_type(:administrative_area_level_2).first
state['short_name']
end
end
def country
if country = address_components_of_type(:country).first
country['long_name']
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment