StopOptions

data class StopOptions(val stopWhenArrivedAtDestination: Boolean = true, val stopDistanceThreshold: Float = 15.0f)

A struct containing information about the navigation stop options.

Constructors

Link copied to clipboard
constructor(stopWhenArrivedAtDestination: Boolean = true, stopDistanceThreshold: Float = 15.0f)

Properties

Link copied to clipboard

The distance measured in meters, indicating when the navigation manager considers that the user has arrived at the final destination. Default is 15 meters

Link copied to clipboard

The boolean indicating whether the navigation manager should stop navigation when user has arrived close to the final destination. Default is true