Place

data class Place(    val name: String = "",     val street: String = "",     val address: String = "",     val city: String = "",     val citySubdivision: String = "",     val countryTertiarySubdivision: String = "",     val countrySecondarySubdivision: String = "",     val countrySubdivision: String = "",     val country: String = "",     val distance: FormattedDistance? = null,     val position: GeoCoordinate)

Information about the retrieved place.

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

Constructors

Link copied to clipboard
fun Place(    name: String = "",     street: String = "",     address: String = "",     city: String = "",     citySubdivision: String = "",     countryTertiarySubdivision: String = "",     countrySecondarySubdivision: String = "",     countrySubdivision: String = "",     country: String = "",     distance: FormattedDistance? = null,     position: GeoCoordinate)

Properties

Link copied to clipboard
val address: String
Link copied to clipboard
val city: String
Link copied to clipboard
val citySubdivision: String
Link copied to clipboard
val country: String
Link copied to clipboard
val countrySecondarySubdivision: String
Link copied to clipboard
val countrySubdivision: String
Link copied to clipboard
val countryTertiarySubdivision: String
Link copied to clipboard
val distance: FormattedDistance? = null
Link copied to clipboard
val name: String
Link copied to clipboard
val position: GeoCoordinate
Link copied to clipboard
val street: String