Package-level declarations
Types
Link copied to clipboard
data class Address(val country: String? = null, val countryId: CountryId? = null, val state: String? = null, val stateCode: String? = null, val city: String? = null, val cityDistrict: String? = null, val cityBlock: String? = null, val houseNumber: String? = null, val streetName: String? = null, val buildingName: String? = null, val floor: String? = null, val door: String? = null, val postalCode: String? = null, val extendedPostalCode: String? = null, val formattedAddress: String? = null) : Parcelable
Class to hold information about an address.
Link copied to clipboard
ID used for uniquely identifying an EV charging station. It is not localized and should not be used for display in a production UI.
Link copied to clipboard
data class Coordinate(val latitude: Angle, val longitude: Angle, val altitude: Distance = Distance.meters(0)) : Parcelable
Link copied to clipboard
class Place(val coordinate: Coordinate, val name: String? = null, val address: Address? = null) : Parcelable
A class to represent a place on the map.
Link copied to clipboard
A class representing a request to plan a trip from departure to destination. If departure is null
, the last known position is used as departure when planning a trip.
Link copied to clipboard
Link copied to clipboard
The reason a trip planning failed.