本文介绍了如何获得垂直(高速公路)车道数?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在使用获取垂直(高速公路)车道数

I am using https://developer.here.com/develop/rest-apis to get the perticular (highway) road's number of lanes

例如如果人/车辆要从(waypoint0)-(X地点)到达(waypoint1)-(Y地点),那么在那条路上有多少车道可用?

e.g. If person/vehicle want to reach from (waypoint0)- (Place X) to (waypoint1)- (Place Y) then on that way how many lanes available ?

像1号高速公路一样,有两条车道或四条车道。

like Highway #1 has two lanes or four lanes available.

目前,我在 Rest API ,但我看不到任何车道详细信息:

Currently I am passing below Rest API but i could not see any Lane details :



  1. https://route.api.here.com/routing/7.2/calculateroute.json?app_id=XXXXXX&app_code=XXXXXXXX&waypoint0=geo!23.036611,72.561203&waypoint1=geo!23.034449,72.560581&mode=fastest;car;traffic:disabled

2.


  1. G道; 23.034449,72.560581& mode = fastest ; car& app_id = XXXXXXX& app_code = YYYYYY

  1. https://wse.api.here.com/2/findsequence.json?start=swastik;23.036611,72.561203&destination1=C G Road;23.034449,72.560581&mode=fastest;car&app_id=XXXXXXX&app_code=YYYYYY

也请向我建议其他任何API,以获取特定道路的车道数量。

Also please suggest me any other API to get number of lanes of particular road.

推荐答案

您是否看过Platform Data Extension API?这里有一个示例(tcs.ext.here.com/examples/v3/pde_get_any_link_info)说明了这种方法。

Did you had a look at the Platform Data Extension API? There is an example here (tcs.ext.here.com/examples/v3/pde_get_any_link_info) which illustrates this approach.

可以在此处找到更多文档:

Further documentation can be found here:https://developer.here.com/documentation/platform-data/topics/what-is.html

这篇关于如何获得垂直(高速公路)车道数?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-28 15:55