start

abstract fun start(navigationStartedCallback: NavigationStartedCallback? = null)

Starts navigation without a Route. In this case navigation will just provide a MatchedLocation and LocationContext, therefore navigation will interact only with OnLocationMatchedListener and OnLocationContextUpdateListener.

An optional navigationStartedCallback can be passed to report on the outcome of this operation.

Important: This is a Public Preview API. It may be changed or removed at any time.

Parameters

navigationStartedCallback

Callback that reports on the outcome of starting navigation.


abstract fun start(routePlan: RoutePlan, navigationStartedCallback: NavigationStartedCallback? = null)

Starts navigation with provided RoutePlan. Navigation will go through all steps:

An optional navigationStartedCallback can be passed to report on the outcome of this operation.

Important: This is a Public Preview API. It may be changed or removed at any time.

Parameters

routePlan

Details of the route of the starting navigation session.

navigationStartedCallback

Callback that reports on the outcome of starting navigation.