Interface ClusterStepExperimental

One cluster size class (thresholds are feature counts).

interface ClusterStep {
    color: string;
    label?: string;
    radius?: number;
    threshold: number;
}

Properties

color: string
label?: string
radius?: number

Cluster circle radius in pixels. Defaults to 14 + 6 * index.

threshold: number

Inclusive minimum count for this class; the first step is the base class.