Place

data class Place(    val coordinate: GeoCoordinate,     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 GeoCoordinate.

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: GeoCoordinate,     name: String = "",     address: Address? = null)

Properties

Link copied to clipboard
val address: Address? = null
Link copied to clipboard
val coordinate: GeoCoordinate
Link copied to clipboard
val name: String