Place

data class Place(val coordinate: GeoPoint, val name: String = "", val address: Address? = null)

Structure holding information about a specific place.

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

Parameters

coordinate

The primary reference GeoPoint.

name

The name of the place (e.g. Name of the POI).

address

The address of the place.

Constructors

Link copied to clipboard
fun Place(coordinate: GeoPoint, name: String = "", address: Address? = null)

Properties

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