Open Pioneer Trails Packages
    Preparing search index...

    An object that allows spatial selection.

    Developers can create classes that implement this interface for different selection sources.

    interface SelectionSource {
        label: string;
        status?: SelectionSourceStatus;
        select(
            selectionKind: ExtentSelection,
            options: SelectionOptions,
        ): Promise<SelectionResult[]>;
    }
    Index

    Properties

    Methods

    Properties

    label: string

    The label of this source.

    This will be displayed by the user interface during selection source selection.

    The optional status of this source. If there is no status defined, it is assumed that the source is always available.

    This will be displayed by the user interface.

    This value can be reactive; changes will be reflected in the UI.

    Methods