When requesting normal directions with
{
"coordinates":[[8.681495,49.41461],[8.687872,49.420318]],
"extra_info":["waycategory","waytype"],
"instructions":"false"
}
in the response, i get “extras” under “routes”:
{
"bbox": [ /* 4 items */ ],
"metadata": { /* 5 items */ },
"routes":
[
{
"summary": { /* 2 items */ },
"bbox": [ /* 4 items */ ],
"geometry": "...",
"way_points": [ /* 2 items */ ],
"legs": [ /* no items */ ],
"extras": { /* 2 items */ }
}
]
}
But when opting for a round trip like
{"coordinates":[[8.681495,49.41461]],
"extra_info":["waycategory","waytype"],
"instructions":"false",
"options":{"round_trip":{"length":10000,"points":5,"seed":1}}}
the return does not include the “extras”.
Is this intentional?