interface RangeInfoJson {
    currentRangeExtent?: [number, number];
    field?: string;
    fullRangeExtent?: [number, number];
    name?: string;
    type: "rangeInfo";
}

Properties

currentRangeExtent?: [number, number]

Contains the min and max values within which the features are visible.

field?: string

Field name to used for the range.

fullRangeExtent?: [number, number]

Contains the min and max values of all the features for this rangeInfo.

name?: string

A unique name that can be referenced by webMap.activeRanges.

type

Type of range object. Value of this property must be rangeInfo.