Interface ContourLineOptions

Option for contour lines.

interface ContourLineOptions {
    color?: Color;
    enabled?: boolean;
    interval?: number;
    opacity?: number;
    secondaryInterval?: number;
    thickness?: number;
}

Properties

color?: Color

The color of the lines.

enabled?: boolean

Enables or disables contour lines.

interval?: number

The interval between each main line (in meters).

opacity?: number

The opacity of the lines.

secondaryInterval?: number

The interval between each secondary line (in meters).

thickness?: number

The thickness of the lines.