DestinationConfiguration

data class DestinationConfiguration(val latitude: Double, val longitude: Double, val label: String? = null, val id: String? = null)

Configures the destination of the requested navigation. The latitude and longitude are mandatory because they are used to determine the geographical location of the destination.

Constructors

Link copied to clipboard
constructor(latitude: Double, longitude: Double, label: String? = null, id: String? = null)

Properties

Link copied to clipboard
val id: String? = null

An optional identifier for the destination. If this is an identifier known by the backend, special routing configurations can be provided by the service for specific destinations.

Link copied to clipboard
val label: String? = null

A display name for the destination. Will be displayed at the end of the navigation.

Link copied to clipboard

The latitude the navigation should end at.

Link copied to clipboard

The longitude the navigation should end at.