纬度和经度放置在.NET中的名称或城市
答
这是反向地理编码的名称。有很多这样的服务提供商。一个是谷歌。看看他们的开发人员部分:
您只需格式化所需的网址,并使用Net.WebClient下载JSON:
Using client As New Net.WebClient()
Return client.DownloadString(address)
End Using
然后,您将需要parse the Json数据提取街名
答
你将不得不使用Web服务。 Geonames就是这样一个免费的资源。
+0
你如何从代码中使用它? – 2012-08-08 11:11:47
+0
@SachinKainth他们有几个客户端库:http://www.geonames.org/export/client-libraries.html – 2012-08-08 11:14:19
退房http://stackoverflow.com/questions/2702309/need-a-list-of-all-countries-in-the-world-with-a-longitude-and-latitude-coordin – 2012-08-08 11:10:51
这就是关于回头ntry名称。我不想那样,我需要城市名或地名。 – 2012-08-08 11:13:28