Interface TooltipOptions

interface TooltipOptions {
    className?: string;
    content?:
        | string
        | HTMLElement
        | (layer: Layer) => string
        | (layer: Layer) => HTMLElement;
    direction?: Direction;
    interactive?: boolean;
    offset?: PointExpression;
    opacity?: number;
    pane?: string;
    permanent?: boolean;
    sticky?: boolean;
}

Hierarchy (View Summary)

Properties

className?: string
content?:
    | string
    | HTMLElement
    | (layer: Layer) => string
    | (layer: Layer) => HTMLElement
direction?: Direction
interactive?: boolean
opacity?: number
pane?: string
permanent?: boolean
sticky?: boolean