Interface OpenPopupActionOptions

Options accepted by the OpenPopupAction. A popup will be opened for the specified item.

interface OpenPopupActionOptions {
    highlight-remove-timeout?: number;
    items: readonly ActionItem[];
    popupTemplate?: any;
    source?: any;
}

Hierarchy (view full)

Properties

highlight-remove-timeout?: number

The time in milliseconds until the popup is hidden (optional). Same property as HighlightAction.

items: readonly ActionItem[]

An array of objects with a geometry. Only first is used.

popupTemplate?: any

A popupTemplate to use (optional).

source?: any

A store which is used to find the popupTemplate (optional).

Generated using TypeDoc