start

abstract fun start()

Starts navigation without specifying a Route.

Use this method to start the navigation in free driving mode.

Navigation goes through the following steps:

As a result of successful action, the following listener is notified:

For examples on how to start navigation, see the developer documentation.

Throws

if the navigation session has already started.


abstract fun start(navigationOptions: NavigationOptions)

Starts navigation with provided NavigationOptions.

Use this method to start the navigation in active guidance mode with the provided Route within the NavigationOptions.

Navigation goes through the following steps:

Additionally, the system performs the following operations for the active, i.e., currently navigated Route within the NavigationOptions:

As a result of successful action, the following listeners are notified:

For examples on how to start navigation, see the developer documentation.

Parameters

navigationOptions

Details of the navigation options for starting the navigation session.

Throws

if the vehicle used for navigation is incompatible with the given route plan.