尝试在HERE的路由API中使用参数TransitRaduis。它在“汽车模式”下运行良好,但在“公共交通”模式下使用时,它似乎没有任何改变! 因此,通过以下三种不同的方式设置一个航点,将获得相同的结果!
&waypoint0=geo!37.7914050,-122.3987030
&waypoint0=geo!37.7914050,-122.3987030;50
&waypoint0=geo!37.7914050,-122.3987030;500
答案 0 :(得分:0)
要使用CalculateRoute服务请求公共交通路线,您需要将出发时间指定为
https://route.api.here.com/routing/7.2/calculateroute.json?app_id={YOUR_APP_ID}&app_code={YOUR_APP_CODE}&waypoint0=geo!52.530,13.326&waypoint1=geo!52.513,13.407&departure=now&mode=fastest;publicTransport&combineChange=true
有关更多详细信息,请查阅文档 https://developer.here.com/documentation/routing/topics/request-public-transport-routes.html
祝你好运!