I'm using Direction API to display the routes between source and destination. I formed the URL like this
it is giving "multiple routes" like this
`{"routes" :
[
{ }
{ }
{ }
]}`
but when i add the waypoints in the URL
it is giving "single route" like this
`{
"routes" :
[{
"legs" : [ { }, { } ]
}]
}`
I specified the waypoint near to the starting location, still am getting single route only.
is there any mistake in my URL or it's direction API nature ??
Anyone faced this issue??