Simple marker symbol used for rendering point entities.

interface SimpleMarkerSymbolDXF {
    color?: number[];
    size: number;
    style:
        | "cross"
        | "none"
        | "circle"
        | "triangle"
        | "x"
        | "path"
        | "square"
        | "diamond";
    type: "simple-marker";
}

Properties

Properties

color?: number[]

Optional fill color as RGBA array.

size: number

Marker size in pixels or map units.

style:
    | "cross"
    | "none"
    | "circle"
    | "triangle"
    | "x"
    | "path"
    | "square"
    | "diamond"

Marker shape style.

type

Marker symbol type (always "simple-marker").