@equinor/videx-map
Version:
Component for Pixi-overlay in Leaflet.
19 lines (18 loc) • 568 B
TypeScript
import { WellboreData, RootData } from './data';
export declare class Highlight {
active: boolean;
root: RootData;
wellbores: WellboreData[];
/** Return true of highlight is single. */
get single(): boolean;
/** Get first wellbore. */
get first(): WellboreData;
/** Set highlight */
set(root: RootData, wellbores: WellboreData[]): void;
private highlightRoot;
private highlightWellbores;
clear(): void;
private clearRoot;
private clearWellbores;
equals(root: RootData, wellbores: WellboreData[]): boolean;
}