Interface DataToMapOverflowExperimental

Pagination-truncation report for the bounded GeoJSON path.

interface DataToMapOverflow {
    limit: number;
    renderedFeatureCount: number;
    totalCount?: number;
    truncated: boolean;
}

Properties

limit: number

The bound that produced the truncation (MountSourceOptions.maxGeoJsonFeatures).

renderedFeatureCount: number

Rows actually rendered on the map.

totalCount?: number

Matching row count when the source reported one.

truncated: boolean

True when more matching rows exist than were materialized.