start

abstract fun start()

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.

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

Throws

if navigation is already started.


abstract fun start(routePlan: RoutePlan)

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

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.

Throws

if navigation is already started.


abstract fun start(navigationOptions: NavigationOptions)

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

Parameters

navigationOptions

Details of the navigation options for starting the navigation session.

Throws

if navigation is already started.