MapPoint

data class MapPoint(val x: Double, val y: Double) : Parcelable

Represents the result of projecting a Geographic coordinate onto a 2D plane, typically within the range of 0,1

Since

0.0.112

Constructors

Link copied to clipboard
constructor(x: Double, y: Double)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
Link copied to clipboard
val x: Double
Link copied to clipboard
val y: Double

Functions

Link copied to clipboard
open override fun describeContents(): Int
Link copied to clipboard
Link copied to clipboard
operator fun div(divisor: Double): MapPoint
Link copied to clipboard
operator fun minus(other: MapPoint): MapVector2
operator fun minus(vector: MapVector2): MapPoint
Link copied to clipboard
operator fun plus(other: MapPoint): MapPoint
operator fun plus(other: MapVector2): MapPoint
Link copied to clipboard
operator fun times(scale: Double): MapPoint
Link copied to clipboard
operator fun unaryMinus(): MapPoint
Link copied to clipboard
open override fun writeToParcel(parcel: Parcel, flags: Int)