geopackage-ts
    Preparing search index...

    Interface TileMatrix

    Represents a row in the gpkg_tile_matrix table.

    Each entry defines the properties of one zoom level in a tile pyramid, including the matrix grid dimensions, individual tile pixel dimensions, and the ground sample distance (pixel size in SRS units). See the GeoPackage Tile Matrix specification.

    interface TileMatrix {
        matrix_height: number;
        matrix_width: number;
        pixel_x_size: number;
        pixel_y_size: number;
        table_name: string;
        tile_height: number;
        tile_width: number;
        zoom_level: number;
    }
    Index

    Properties

    matrix_height: number

    Number of tile rows (vertical count) in the matrix at this zoom level.

    matrix_width: number

    Number of tile columns (horizontal count) in the matrix at this zoom level.

    pixel_x_size: number

    Width of a single pixel in SRS units (ground sample distance in the x direction). For EPSG:4326 this is expressed in degrees; for projected SRS it is typically in meters.

    pixel_y_size: number

    Height of a single pixel in SRS units (ground sample distance in the y direction). For EPSG:4326 this is expressed in degrees; for projected SRS it is typically in meters.

    table_name: string

    Name of the tile pyramid user data table this matrix belongs to.

    tile_height: number

    Height of each individual tile in pixels.

    tile_width: number

    Width of each individual tile in pixels.

    zoom_level: number

    Zoom level for this tile matrix. 0 represents the most zoomed-out level; higher values are more detailed.