Open Pioneer Trails Packages
    Preparing search index...

    Interface VectorLayerSelectionSource

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

    Hierarchy

    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