城市(按 GPS 位置纬度/经度)

发布于 2024-09-27 12:10:33 字数 31 浏览 2 评论 0原文

我有一个纬度/经度值...我如何搜索并获取城市?

I've got a latitude/longitude value.... How can I search and get the city?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

爱人如己 2024-10-04 12:10:33

如果您正在寻找免费(自由)来源,您可以使用 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

倾城月光淡如水﹏ 2024-10-04 12:10:33

使用 google 地图 api,以下是获取 XML 格式地址的示例。

http://maps.google.com/maps/api/geocode/xml?latlng={latlng}&sensor={sensor}®ion={region}

其中 latlng = 0,0 sensor = false,而 region = 国家/地区代码,因此对于我的旧地址,它是

http://maps.google.com/maps/api/geocode/xml?latlng=-43.893792,171.7592620&sensor=false®ion=nz

然后您可以使用它XML 来获取您需要的任何详细信息,包括城市

Using the google maps api, here is an example to get the address in XML format.

http://maps.google.com/maps/api/geocode/xml?latlng={latlng}&sensor={sensor}®ion={region}

Where latlng = 0,0 sensor = false, and region = country code, so for my old address it would be

http://maps.google.com/maps/api/geocode/xml?latlng=-43.893792,171.7592620&sensor=false®ion=nz

Then you can use that XML to get whatever details you need, including the City

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文