Interface DivOverlayOptions

interface DivOverlayOptions {
    className?: string;
    content?:
        | string
        | HTMLElement
        | (layer: Layer) => string
        | (layer: Layer) => HTMLElement;
    interactive?: boolean;
    offset?: PointExpression;
    pane?: string;
}

Hierarchy (View Summary)

Properties

className?: string
content?:
    | string
    | HTMLElement
    | (layer: Layer) => string
    | (layer: Layer) => HTMLElement
interactive?: boolean
pane?: string