我正在搜索一个API,允许我检索我搜索的国家/省份列表。我重复countryName或ISO,不一个Latlng / geocoding。
我遇到的最接近的是: https://code.google.com/p/risevision/wiki/States_v2
但仅适用于美国和加拿大。
有国家和州/省的数据库是我的第二选择。
有没有人有其他想法?
答案 0 :(得分:1)
Fusion Tables中的自然地球数据包含了这些数据。
https://www.google.com/fusiontables/DataSource?docid=19lLpgsKdJRHL2O4fNmJ406ri9JtpIIk8a-AchA
答案 1 :(得分:-2)
您可以使用Geoname's Webservices,
它提供Rest API,但您需要注册
<强>更新强>
尝试以下API
http://api.geonames.org/countryInfo?country=US&username=demo
响应:
<geonames>
<country>
<countryCode>US</countryCode>
<countryName>United States</countryName>
<isoNumeric>840</isoNumeric>
<isoAlpha3>USA</isoAlpha3>
<fipsCode>US</fipsCode>
<continent>NA</continent>
<continentName>North America</continentName>
<capital>Washington</capital>
<areaInSqKm>9629091.0</areaInSqKm>
<population>310232863</population>
<currencyCode>USD</currencyCode>
<languages>en-US,es-US,haw,fr</languages>
<geonameId>6252001</geonameId>
<west>-124.733253</west>
<north>49.388611</north>
<east>-66.954811</east>
<south>24.544245</south>
</country>
</geonames>