geopackage-ts
    Preparing search index...

    Interface TileRow

    Represents a single row in a tile pyramid user data table.

    Each tile row stores the image data for one tile at a specific zoom level, column, and row position within the tile grid.

    interface TileRow {
        id: number;
        tile_column: number;
        tile_data: Buffer;
        tile_row: number;
        zoom_level: number;
    }
    Index

    Properties

    id: number

    The unique row identifier (primary key).

    tile_column: number

    The column index of this tile within the tile grid at its zoom level.

    tile_data: Buffer

    The binary image data for this tile (e.g., PNG or JPEG encoded).

    tile_row: number

    The row index of this tile within the tile grid at its zoom level.

    zoom_level: number

    The zoom level of this tile.