Package-level declarations

Types

Link copied to clipboard
data class Limited(val speed: Speed) : SpeedLimit

Speed is limited.

Link copied to clipboard
data class LocationContext(val speedLimit: SpeedLimit, val streetName: String, val city: String, val country: String, val countryCode: String, val isTunnel: Boolean, val isUnderpass: Boolean, val functionalRoadClass: Int, val speed: Speed? = null, val extras: String? = null, val roadType: TypeOfRoad? = null, val isLeftHandDriving: Boolean? = null)

Provides detailed information about a current location on the road.

Link copied to clipboard

Responsible for extraction of detailed information about a current location on the road (e.g. Speed limit).

Link copied to clipboard
abstract class SpeedLimit

Specify speed limit.

Link copied to clipboard
value class TypeOfRoad

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

Link copied to clipboard

Speed limit is unknown.

Link copied to clipboard

Speed is unlimited (there is no maximum speed).