Interface SpatialAggregationResolutionInput

interface SpatialAggregationResolutionInput {
    indexResolution?: number;
    maxCellCount?: number;
    strategy?: "backend-default" | "fit-viewport" | "fixed-index-resolution";
    targetCellCount?: number;
    zoom?: number;
}

Properties

indexResolution?: number

Backend-native index resolution. Its meaning is index-model specific.

maxCellCount?: number

Hard cap the backend should not exceed without paging/refinement.

strategy?: "backend-default" | "fit-viewport" | "fixed-index-resolution"
targetCellCount?: number

Preferred number of cells for the returned page or viewport.

zoom?: number

Map zoom that should drive backend resolution selection.