@camptocamp/inkmap
    Preparing search index...

    Interface TileGrid

    interface TileGrid {
        extent?: number[];
        matrixIds: string[];
        resolutions: number[];
        tileSize: number;
    }
    Index

    Properties

    extent?: number[]

    Extent for the tile grid.

    matrixIds: string[]

    matrix IDs. The length of this array needs to match the length of the resolutions array. By default, it will be ['0', '1', '2', ..., resolutions.length-1]

    resolutions: number[]

    Resolutions. The array index of each resolution needs to match the zoom level. This means that even if a minZoom is configured, the resolutions array will have a length of maxZoom + 1

    tileSize: number

    Tile size.