@equinor/videx-3d
    Preparing search index...

    Type Alias WellMapProps

    WellMap props

    type WellMapProps = {
        color?: string;
        colors?:
            | Record<string, string>
            | ((wellbore: WellboreHeader, slot: number) => string);
        depth?: number;
        depthCursor?: boolean;
        excluded?: string[];
        headless?: boolean;
        interactive?: boolean;
        onDepthChanged?: (depth: number) => void;
        onSelect?: (wellbore: string, depth: number) => void;
        onWellboreOver?: (
            wellbore: WellboreHeader | null,
            depth: number | undefined,
        ) => void;
        selected?: string;
        theme?: WellMapStyles;
        wellIdentifier: string;
    }
    Index

    Properties

    color?: string
    colors?:
        | Record<string, string>
        | ((wellbore: WellboreHeader, slot: number) => string)
    depth?: number
    depthCursor?: boolean
    excluded?: string[]
    headless?: boolean
    interactive?: boolean
    onDepthChanged?: (depth: number) => void
    onSelect?: (wellbore: string, depth: number) => void
    onWellboreOver?: (
        wellbore: WellboreHeader | null,
        depth: number | undefined,
    ) => void
    selected?: string
    wellIdentifier: string