function google_geocode_country_list in Location 7.3
Same name and namespace in other branches
- 5.3 geocoding/google.inc \google_geocode_country_list()
- 5 geocoding/google.inc \google_geocode_country_list()
- 6.3 geocoding/google.inc \google_geocode_country_list()
- 7.5 geocoding/google.inc \google_geocode_country_list()
- 7.4 geocoding/google.inc \google_geocode_country_list()
Return the list of ISO3166 codes supported by this geocoder.
Google now supports geocoding for all countries: https://developers.google.com/maps/coverage
File
- geocoding/
google.inc, line 14 - Google geocoder.
Code
function google_geocode_country_list() {
$countries = location_get_iso3166_list();
return array_keys($countries);
}