Interface UseHoverResultExperimental

Result of useHover.

interface UseHoverResult {
    hovered: null | SourceQualifiedFeatureSelectionTarget;
    clearHovered(): void;
    isHovered(target: SourceQualifiedFeatureSelectionTarget): boolean;
    setHovered(target: null | SourceQualifiedFeatureSelectionTarget): void;
}

Properties

The feature currently under the pointer, or null.

Methods