I'm using HERE.com Routing API to get the route between 2 points. I used tollroad:-1 feature in the request. Which from my understanding will try to avoid toll roads and if it can't avoid toll roads it will return the route with toll roads.
For example if I try to calculate the route between 'Berlin, Germany' & 'Paris, France' I am getting this error:
{"issues":[{"message":"Router returned no route, error: 400 : {\"_type\":\"ns2:RoutingServiceErrorType\",\"type\":\"ApplicationError\",\"subtype\":\"NoRouteFound\",\"details\":\"Error is NGEO_ERROR_GRAPH_DISCONNECTED_CHECK_OPTIONS\",\"additionalData\":[{\"key\":\"error_code\",\"value\":\"NGEO_ERROR_GRAPH_DISCONNECTED_CHECK_OPTIONS\"}],\"metaInfo\":{\"timestamp\":\"2020-03-18T08:29:37Z\",\"mapVersion\":\"8.30.106.154\",\"moduleVersion\":\"7.2.202010-6650\",\"interfaceVersion\":\"2.6.76\",\"availableMapVersion\":[\"8.30.106.154\"]}}\n"},{"message":"Request id: c75dd122-3d7c-4364-b4db-ffefc08a5187"}],"response":null,"error_id":"c75dd122-3d7c-4364-b4db-ffefc08a5187","response_code":"400 Bad Request"}
Just to be clear, what I hope for is that if there are no way to avoid toll roads (avoid -1), then return a route with toll roads. Any comments or suggestions about this?
Thanks in advance