cesium-spatial
    Preparing search index...

    Interface CoverOptions

    Options for the budget-aware cover helpers.

    interface CoverOptions {
        ellipsoid?: Ellipsoid;
        level: number;
        maxCells?: number;
        minLevel?: number;
    }
    Index
    ellipsoid?: Ellipsoid

    The ellipsoid used for area estimates. Defaults to WGS84.

    level: number

    Level to aim for. Coarsened as needed to respect maxCells.

    maxCells?: number

    Upper bound on how many cells to produce. The cover steps to coarser levels until the estimate fits. Defaults to 20000.

    minLevel?: number

    Never go coarser than this while respecting the budget.