The sketch edge rendering configuration of a symbol layer. Edges of type sketch are rendered with a hand-drawn look in mind.

interface SketchEdgesJson {
    color?: number[];
    extensionLength?: number;
    size?: number;
    transparency?: number;
    type: "sketch";
}

Hierarchy

  • EdgesJsonBase
    • SketchEdgesJson

Properties

color?: number[]

Color is represented as a three or four-element array.

extensionLength?: number

A size in points by which to extend edges beyond their original end points.

size?: number

Edge size in points, positive only.

transparency?: number

The value has to lie between 100 (full transparency) and 0 (full opacity).

type

The type of edge visualization. Value of this property must be sketch.