Place

class Place(val coordinate: Coordinate, val name: String? = null, val address: Address? = null) : Parcelable

A class to represent a place on the map.

Parameters

address

The place Address.

coordinate

The place Coordinate.

name

The place name.

Constructors

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

Properties

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

Inherited functions

Link copied to clipboard
abstract fun describeContents(): Int
Link copied to clipboard
abstract fun writeToParcel(p0: Parcel, p1: Int)