Interface DatasetCapabilities

Represents the capabilities of a Dataset.

interface DatasetCapabilities {
    defaultHighlightEnabled: boolean;
    selectedHighlightEnabled: boolean;
    supportsAddItems: boolean;
    supportsGeometry: boolean;
    supportsPopups: boolean;
    supportsRemoveItems: boolean;
}

Properties

defaultHighlightEnabled: boolean

Flag to indicate whether the default highlight of items that are loaded in the result ui is disabled. True by default.

NOTE: Hover/selected highlight is not affected by this flag.

selectedHighlightEnabled: boolean

Like defaultHighlightEnabled but for selected items.

True by default.

supportsAddItems: boolean

Flag if the dataset supports the addItems method.

supportsGeometry: boolean

Does the data set have items with geometry field.

supportsPopups: boolean

Flag to indicate if data source supports popups.

supportsRemoveItems: boolean

Flag if the dataset supports the removeItems method.