首页 > 解决方案 > 如何使用 HERE API 使用 pincode 或区域名称获取本地区域?

问题描述

我们如何从 HERE API 获取特定密码/邮政编码下的本地区域,我可以将密码/地区名称、城市和国家/地区传递给 API。

标签: here-api

解决方案


Places Search API 帮助根据可以在 q 参数中指定的区域名称按区域定位附近

https://places.api.here.com/places/v1/discover/search?app_id= {YOUR_APP_ID}&app_code={YOUR_APP_CODE}&at=52.531,13.3843&q=Brandenburg+Gate &pretty Copy

请参阅以下文档以获取详细参考

developer.here.com/documentation/places/topics/quick-start-find-text-string.html

使用邮政编码,Geocoder API 获取编码周围的区域。请参考文档:

developer.here.com/api-explorer/rest/geocoder/reverse-geocode-postal-shape


推荐阅读