我的GraphHopper路由引擎稳定版本0.5
有问题我可以在使用vehicle=car
时获取路线,但这会因自行车和脚而失败。
这会在地图上产生一个结果,这很棒。
我在本地运行时使用了完全相同的坐标,以获取JSON数据,如下所示:
http://localhost:8989/routes?point=-33.916567%2C18.417914&point=-33.917584%2C18.418935&locale=en-US&vehicle=foot
这不会产生任何结果,而是返回以下响应:
{
"message": "Vehicle not supported: foot",
"hints": [{
"message": "Vehicle not supported: foot",
"details": "java.lang.IllegalArgumentException"
}]
}
请注意,将车辆更改为汽车会产生结果!怎么能修好?
为了完整起见,这里是使用vehicle = car
的样本请求和响应{
"paths": [
{
"distance": 151.857,
"time": 18222,
"points_encoded": true,
"weight": 151.857451,
"instructions": [
{
"sign": 0,
"text": "Continue onto Hudson Street",
"time": 3782,
"distance": 31.517,
"interval": [
0,
1
]
},
{
"sign": -2,
"text": "Turn left onto Waterkant Street",
"time": 14440,
"distance": 120.34,
"interval": [
1,
3
]
},
{
"sign": 4,
"text": "Finish!",
"time": 0,
"distance": 0,
"interval": [
3,
3
]
}],
"bbox": [
18.417884,
-33.917672,
18.418824,
-33.916712
],
"points": "nj_nEehloBh@l@|@uAvAeB"
}
],
"hints": {
"visited_nodes.average": "20.0",
"visited_nodes.sum": "20"
},
"info": {
"copyrights": [
"GraphHopper",
"OpenStreetMap contributors"
],
"took": 10
}
}
答案 0 :(得分:6)
您必须将其包含在config.properties
中 graph.flagEncoders=car,foot,bike
BTW:我已经编辑了你的帖子。要澄清GraphHopper路由引擎与GraphHopper Directions API之间的区别,请参阅here