planRoute
abstract fun planRoute(routePlanningOptions: RoutePlanningOptions, callback: RoutePlanningCallback): Cancellable
Asynchronously plans a route and its alternative routes using the provided RoutePlanningOptions. If the operation succeeds, RoutePlanningCallback.onSuccess is called with a RoutePlanningResponse. If the operation fails, RoutePlanningCallback.onFailure is called with a RoutingFailure.
Return
cancellable operation.
Parameters
routePlanningOptions
The route options needed to plan a route.
callback
The RoutePlanningCallback invoked after each route has been planned and when planning of all routes has finished, either successfully or with an error. The callback will be executed on the main thread.