SDK JS
    Preparing search index...

    Interface DrawOverlayColors

    Colors + line style for the overlay (straight CSS colors).

    interface DrawOverlayColors {
        fill?: string;
        line?: string;
        lineDash?: readonly number[];
        lineOpacity?: number;
        lineWidth?: number;
        vertex?: string;
    }
    Index

    Properties

    fill?: string
    line?: string
    lineDash?: readonly number[]

    Draped line dash pattern (line-widths), e.g. [2, 2]; omitted = solid.

    lineOpacity?: number

    Draped line opacity 0–1 (default 1). A tool that draws its own 3D line passes a low value so the ground track reads as a subtle shadow, not the measurement.

    lineWidth?: number

    Draped line width in px (default 2.5).

    vertex?: string