Package-level declarations

Types

Link copied to clipboard
class NavigationError(message: String, cause: Throwable? = null) : Throwable
Link copied to clipboard
Link copied to clipboard
data class NavigationOptions(    val itineraryOptions: ItineraryOptions = ItineraryOptions(),     val cameraMode: Int? = null,     val zoomWhileTracking: Double? = null,     val renderMode: Int? = null,     val stopOptions: NavigationOptions.StopOptions = StopOptions(),     val userPositionThreshold: Float = 25.0f,     @IntRange(from = 5, to = 9223372036854775807) val navigationRecalculationTimeInterval: Long = 5)

A data class containing information about the navigation options

Functions

Link copied to clipboard
fun NavigationManagerListener(    onInfoChanged: (info: NavigationInfo) -> Unit,     onStarted: (itinerary: Itinerary) -> Unit? = null,     onStopped: (itinerary: Itinerary) -> Unit? = null,     onArrived: (itinerary: Itinerary) -> Unit? = null,     onFailed: (error: Throwable) -> Unit? = null,     onRecalculated: (itinerary: Itinerary) -> Unit? = null): NavigationManagerListener