使用 mapbox API 将 zip/postcode 转换为纬度和经度
Convert zip/postcode to latitude and longitude with mapbox API
我在网络应用程序中使用 Mapbox。我有一个功能,用户输入一个邮政编码,它应该显示在地图上,然后用数据做一些其他的事情。我现在要做的就是将邮政编码转换为纬度和经度,以在地图上显示标记并记录坐标。有没有办法在 Mapbox API 中做到这一点?如果是这样,我似乎无法找到它。如果没有,还有其他简单的方法吗?
Mapbox 在 public 测试版中有自己的地理编码 API:
Geocoding requests are queries composed of location text or lat/lon coordinates that can be used to find corresponding place data. A geocoding request includes a geocoding {index} in requests which specifies the dataset to use to find place data.
我在网络应用程序中使用 Mapbox。我有一个功能,用户输入一个邮政编码,它应该显示在地图上,然后用数据做一些其他的事情。我现在要做的就是将邮政编码转换为纬度和经度,以在地图上显示标记并记录坐标。有没有办法在 Mapbox API 中做到这一点?如果是这样,我似乎无法找到它。如果没有,还有其他简单的方法吗?
Mapbox 在 public 测试版中有自己的地理编码 API:
Geocoding requests are queries composed of location text or lat/lon coordinates that can be used to find corresponding place data. A geocoding request includes a geocoding {index} in requests which specifies the dataset to use to find place data.