TileID

Defines the tile id in a source-data-loaded event.

data class TileID(zoom: Double, x: Double, y: Double)

Constructors

TileID
Link copied to clipboard
fun TileID(zoom: Double, x: Double, y: Double)

Functions

component1
Link copied to clipboard
operator fun component1(): Double
component2
Link copied to clipboard
operator fun component2(): Double
component3
Link copied to clipboard
operator fun component3(): Double
copy
Link copied to clipboard
fun copy(zoom: Double, x: Double, y: Double): TileID
equals
Link copied to clipboard
open operator override fun equals(other: Any?): Boolean
hashCode
Link copied to clipboard
open override fun hashCode(): Int
toString
Link copied to clipboard
open override fun toString(): String

Properties

x
Link copied to clipboard

The x coordinate of the tile

@SerializedName(value = "x")
val x: Double
y
Link copied to clipboard

The y coordinate of the tile

@SerializedName(value = "y")
val y: Double
zoom
Link copied to clipboard

The zoom level.

@SerializedName(value = "z")
val zoom: Double