如何使用他们的 API 搜索地名并获取城市名称和坐标?链接到他们的API
问问题
11015 次
1 回答
4
当然,这完全取决于您要执行的实际搜索。假设您要查找英国所有以 . 开头的位置Lon
。将执行此搜索的 URL(例如,实际搜索可能会发生很大变化)是:
http://api.geonames.org/search?name_startsWith=lon&country=GB&maxRows=10&username=demo
您可以在浏览器中弹出它并查看结果:
<geonames style="MEDIUM">
<totalResultsCount>334</totalResultsCount>
<geoname>
<toponymName>London</toponymName>
<name>London</name>
<lat>51.50853</lat>
<lng>-0.12574</lng>
<geonameId>2643743</geonameId>
<countryCode>GB</countryCode>
<countryName>United Kingdom</countryName>
<fcl>P</fcl>
<fcode>PPLC</fcode>
</geoname>
<geoname>
<toponymName>Lone</toponymName>
<name>Lone</name>
<lat>58.33333</lat>
<lng>-4.88333</lng>
<geonameId>2643732</geonameId>
<countryCode>GB</countryCode>
<countryName>United Kingdom</countryName>
<fcl>P</fcl>
<fcode>PPL</fcode>
</geoname>
<!-- and so on ... -->
</geonames>
请注意,您需要每个lat
和lng
下的元素geoname
。使用 LINQ to XML(包括System.Linq
并System.Linq.Xml
在您的命名空间声明中):
var xml = XElement.Load("http://api.geonames.org/search?name_startsWith=lon&country=GB&maxRows=10&username=demo");
var locations = xml.Descendants("geoname").Select(g => new {
Name = g.Element("name").Value,
Lat = g.Element("lat").Value,
Long = g.Element("lng").Value
});
foreach (var location in locations)
{
Console.WriteLine("{0}: {1}, {2}", location.Name, location.Lat, location.Long);
}
当然,您可以选择以不同的方式使用这些值,并且您可能希望将其解析Lat
为Long
双精度值。
于 2012-05-21T02:48:40.080 回答