Interface PopupOptions

interface PopupOptions {
    autoClose?: boolean;
    autoPan?: boolean;
    autoPanPadding?: PointExpression;
    autoPanPaddingBottomRight?: PointExpression;
    autoPanPaddingTopLeft?: PointExpression;
    className?: string;
    closeButton?: boolean;
    closeOnClick?: boolean;
    closeOnEscapeKey?: boolean;
    content?:
        | string
        | HTMLElement
        | (layer: Layer) => string
        | (layer: Layer) => HTMLElement;
    interactive?: boolean;
    keepInView?: boolean;
    maxHeight?: number;
    maxWidth?: number;
    minWidth?: number;
    offset?: PointExpression;
    pane?: string;
}

Hierarchy (View Summary)

Properties

autoClose?: boolean
autoPan?: boolean
autoPanPadding?: PointExpression
autoPanPaddingBottomRight?: PointExpression
autoPanPaddingTopLeft?: PointExpression
className?: string
closeButton?: boolean
closeOnClick?: boolean
closeOnEscapeKey?: boolean
content?:
    | string
    | HTMLElement
    | (layer: Layer) => string
    | (layer: Layer) => HTMLElement
interactive?: boolean
keepInView?: boolean
maxHeight?: number
maxWidth?: number
minWidth?: number
pane?: string