Interface SelectFeatureInteraction

interface SelectFeatureInteraction {
    selected: Feature<Geometry>[];
    hasFeatureId(id: string): boolean;
    setSelected(features: SelectableFeatureType | SelectableFeatureType[]): Promise<void>;
}

Implemented by

Methods

Properties

selected: Feature<Geometry>[]