-1

我需要使用 HereMaps 中的路由来告诉它地址城市状态和 zip 以获取路线。在 REST 中。

文档,但我没有看到地址城市状态 zip 选项。 https://developer.here.com/documentation/routing/topics/resource-calculate-route.html

4

1 回答 1

0

我建议您在 Stackoverflow 中的下一个问题中演示您迄今为止实现的代码或 API 调用,以更好地说明您的问题。

现在,HERE 路由 API 需要 lat/long 作为输入。因此,您的起点将有一个纬度/经度,而您的目的地将有一个纬度/经度。

例如:

https://route.api.here.com/routing/7.2/calculateroute.json?app_id= {{app_id}}&app_code={{app_code}}&waypoint0=-27.406755,153.162592&waypoint1=-35.298098,148.13882&mode=fastest;汽车;交通:已启用&departure=2019-04-03T06:00:00Z&representation=navigation

waypoint0 是你开始的地方,waypoint1 是你结束的地方。显然,如果你愿意,你可以有更多的航点。

如果您唯一拥有的是字符串格式的地址,那么您必须使用 HERE Geocoder API 将该字符串转换为纬度/经度。

于 2019-07-22T23:53:40.060 回答