-
Notifications
You must be signed in to change notification settings - Fork 3.7k
Open
Milestone
Description
When implementing lanes on osrm-frontend Project-OSRM/osrm-frontend#187, I noticed that valid
is only given for whole lanes, but not for single indications on the lanes.
What is currently possible:
"type": "turn",
"modifier": "left",
"lanes":[
{"indications":["left","straight"], "valid": true},
{"indications":["straight"], "valid": false}
],
What I would like to see:
"type": "turn",
"modifier": "left",
"lanes":[
{"indications":["left","straight"], "valid": [ true, false ]},
{"indications":["right"], "valid": [ false ]}
]