Type Alias RendererObjectPolygon
RendererObjectPolygon: Record<string, {
symbol: {
color?: number[];
outline?: {
color: number[];
width?: number;
};
style:
| "none"
| "solid"
| "dash"
| "dot"
| "dash-dot"
| "long-dash"
| "long-dash-dot"
| "short-dash"
| "dash-dot"
| "short-dash-dot";
type: "simple-fill";
};
value: string;
}>
Type declaration
symbol: {
color?: number[];
outline?: {
color: number[];
width?: number;
};
style:
| "none"
| "solid"
| "dash"
| "dot"
| "dash-dot"
| "long-dash"
| "long-dash-dot"
| "short-dash"
| "dash-dot"
| "short-dash-dot";
type: "simple-fill";
}
Optionalcolor?: number[]
Optionaloutline?: {
color: number[];
width?: number;
}
color: number[]
Optionalwidth?: number
style:
| "none"
| "solid"
| "dash"
| "dot"
| "dash-dot"
| "long-dash"
| "long-dash-dot"
| "short-dash"
| "dash-dot"
| "short-dash-dot"
type: "simple-fill"
value: string
Renderer definition for polygon entities. Used to visualize DXF closed shapes and filled areas.