TileIndex

data class TileIndex(val zoom: Int, val column: Int, val row: Int)

Represents the index of a square tile on a map

Constructors

Link copied to clipboard
constructor(zoom: Int, column: Int, row: Int)

Properties

Link copied to clipboard
val column: Int

The column, or x-position of the tile

Link copied to clipboard
val row: Int

The row, or y-position of the tile

Link copied to clipboard
val zoom: Int

The zoom level of the tile

Functions

Link copied to clipboard
open override fun toString(): String