TileCoordinate

data class TileCoordinate(val x: Int, val y: Int, val zoom: Int)(source)

Represents the coordinates of a map tile in the tile grid.

Uses the standard XYZ tile addressing scheme where tiles are identified by their column (x), row (y), and zoom level.

Constructors

Link copied to clipboard
constructor(x: Int, y: Int, zoom: Int)

Properties

Link copied to clipboard
val x: Int

The tile column (increases eastward)

Link copied to clipboard
val y: Int

The tile row (increases southward)

Link copied to clipboard
val zoom: Int

The zoom level (2-19)