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.

Constructors

Link copied to clipboard
fun Place(coordinate: GeoPoint, name: String = "", address: Address? = null, entryPoints: List<EntryPoint> = emptyList())

Properties

Link copied to clipboard
val address: Address? = null
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard