城市(按 GPS 位置纬度/经度)
我有一个纬度/经度值...我如何搜索并获取城市?
I've got a latitude/longitude value.... How can I search and get the city?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我有一个纬度/经度值...我如何搜索并获取城市?
I've got a latitude/longitude value.... How can I search and get the city?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
如果您正在寻找免费(自由)来源,您可以使用 Geonames API findNearbyPlaceName。
例如,以下内容返回最近的地名:
http://api. geonames.org/findNearbyPlaceName?lat=47.3&lng=9&username=demo
更多信息请参见此处
http://www.geonames.org/export/web-services.html#findNearbyPlaceName
另一种选择是从 Freebase 获取数据。它不是单点,而是有界框:
http://api.freebase.com/api/service/geosearch?location=[30.2,50.4,30.6,50.8]&location_type=/location/ citytown&inside=true&indent=1
If you're looking for free (as freedom) sources, you can use Geonames API findNearbyPlaceName.
For example the following returns nearest Placename:
http://api.geonames.org/findNearbyPlaceName?lat=47.3&lng=9&username=demo
More information is available here
http://www.geonames.org/export/web-services.html#findNearbyPlaceName
Another option is getting data from Freebase. Instead of single point it takes bounded box:
http://api.freebase.com/api/service/geosearch?location=[30.2,50.4,30.6,50.8]&location_type=/location/citytown&inside=true&indent=1
使用 google 地图 api,以下是获取 XML 格式地址的示例。
其中
latlng
= 0,0sensor
= false,而region
= 国家/地区代码,因此对于我的旧地址,它是然后您可以使用它XML 来获取您需要的任何详细信息,包括城市
Using the google maps api, here is an example to get the address in XML format.
Where
latlng
= 0,0sensor
= false, andregion
= country code, so for my old address it would beThen you can use that XML to get whatever details you need, including the City