PointData

data class PointData(val position: GeoPoint, val label: String, val type: PointType = PointType.DEFAULT) : Parcelable

Represents a point with a description label.

Author

Arnau Mora

Since

20220627

Parameters

position

The position of the point.

label

The label of the point.

Constructors

Link copied to clipboard
fun PointData(position: GeoPoint, label: String, type: PointType = PointType.DEFAULT)

Functions

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

Properties

Link copied to clipboard
Link copied to clipboard
val position: GeoPoint
Link copied to clipboard