cesium-spatial
    Preparing search index...

    Interface CoverOptions

    Options for the budget-aware cover helpers.

    interface CoverOptions {
        ellipsoid?: Ellipsoid;
        maxCells?: number;
        minResolution?: number;
        resolution: number;
    }
    Index
    ellipsoid?: Ellipsoid

    The ellipsoid used for area estimates. Defaults to WGS84.

    maxCells?: number

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

    minResolution?: number

    Never go coarser than this while respecting the budget.

    resolution: number

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