geopackage-ts
    Preparing search index...

    Interface TileMatrixSet

    Represents a row in the gpkg_tile_matrix_set table.

    A Tile Matrix Set defines the spatial reference and bounding extent for a complete set of tile matrices (zoom levels) associated with a tile pyramid user data table. See the GeoPackage Tile Matrix Set specification.

    interface TileMatrixSet {
        max_x: number;
        max_y: number;
        min_x: number;
        min_y: number;
        srs_id: number;
        table_name: string;
    }
    Index

    Properties

    max_x: number

    Maximum x-coordinate of the bounding box for this tile set.

    max_y: number

    Maximum y-coordinate of the bounding box for this tile set.

    min_x: number

    Minimum x-coordinate of the bounding box for this tile set.

    min_y: number

    Minimum y-coordinate of the bounding box for this tile set.

    srs_id: number

    SRS identifier referencing gpkg_spatial_ref_sys.srs_id.

    table_name: string

    Name of the tile pyramid user data table.