Models a tile coordinate in a tile pyramid.

interface TileCoordinate {
    level: number;
    x: number;
    y: number;
}

Properties

Properties

level: number

The level in the tile pyramid on which this tile resides

x: number

The X coordinate (column) of the tile

y: number

The Y coordinate (row) of the tile