Interface RuntimeExplorationSelectionOptions

interface RuntimeExplorationSelectionOptions {
    multiSelect?: boolean;
    onChange?: ((selectedIds: ReadonlySet<string | number>) => void);
    onSelectionTargetsChange?: ((selectedTargets: readonly SourceQualifiedFeatureSelectionTarget[]) => void);
    replaceSelection?: boolean;
    sourceId?: string;
    sourceLayer?: string;
    stateKey?: string;
}

Hierarchy (view full)

Properties

multiSelect?: boolean
onChange?: ((selectedIds: ReadonlySet<string | number>) => void)
onSelectionTargetsChange?: ((selectedTargets: readonly SourceQualifiedFeatureSelectionTarget[]) => void)
replaceSelection?: boolean
sourceId?: string
sourceLayer?: string
stateKey?: string