Place
data class Place(val coordinate: GeoPoint, val name: String = "", val address: Address? = null, val entryPoints: List<EntryPoint> = emptyList())
Structure holding information about a specific place.
Parameters
coordinate
The primary reference GeoPoint.
name
The name of the place (e.g. Name of the POI, street, area, etc.).
address
The address of the place.
entryPoints
A list of entrances which is used to navigate to the place.