interface IconPaint {
    className?: string;
    html?: string;
    iconAnchor?: [number, number];
    iconSize?: [number, number];
    rotate?: number;
    svg?: HTMLElement;
    type: "icon";
}

Hierarchy

  • BasePaintTypes
    • IconPaint

Properties

className?: string
html?: string
iconAnchor?: [number, number]
iconSize?: [number, number]
rotate?: number
svg?: HTMLElement
type