使用REST / Javascript API检索国家/省的列表

时间:2013-10-15 10:58:13

标签: javascript google-maps-api-3

我正在搜索一个API,允许我检索我搜索的国家/省份列表。我重复countryName或ISO,一个Latlng / geocoding。

我遇到的最接近的是: https://code.google.com/p/risevision/wiki/States_v2

但仅适用于美国和加拿大。

有国家和州/省的数据库是我的第二选择。

有没有人有其他想法?

2 个答案:

答案 0 :(得分:1)

答案 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>