@vernonia/core - v5.1.12
    Preparing search index...

    Interface TaxLotPopupTemplateProperties

    interface TaxLotPopupTemplateProperties {
        actions?:
            | nullish
            | CollectionProperties<
                | ActionButtonProperties & { type: "button" }
                | ActionToggleProperties & { type: "toggle" },
            >;
        content?: string | Function | Promise<any> | nullish | ContentProperties[];
        expressionInfos?: nullish | popupExpressionInfoProperties[];
        fieldInfos?: nullish | FieldInfoProperties[];
        infoLayers: TaxLotInfoTableInfoLayers;
        lastEditInfoEnabled?: boolean;
        layerOptions?: nullish | LayerOptionsProperties;
        outFields?: string[] | nullish;
        overwriteActions?: boolean;
        returnGeometry?: boolean;
        title?: string | Function | Promise<any>;
    }

    Hierarchy

    • PopupTemplateProperties
      • TaxLotPopupTemplateProperties
    Index

    Properties

    actions?:
        | nullish
        | CollectionProperties<
            | ActionButtonProperties & { type: "button" }
            | ActionToggleProperties & { type: "toggle" },
        >
    content?: string | Function | Promise<any> | nullish | ContentProperties[]

    The template for defining and formatting a popup's content.

    Read more...

    expressionInfos?: nullish | popupExpressionInfoProperties[]

    An array of objects or ExpressionInfo[] that reference Arcade expressions following the specification defined by the Arcade Popup Profile.

    Read more...

    fieldInfos?: nullish | FieldInfoProperties[]

    An array of FieldInfo that defines how fields in the dataset or values from Arcade expressions participate in a popup.

    Read more...

    lastEditInfoEnabled?: boolean

    Indicates whether or not editor tracking should display.

    Read more...

    layerOptions?: nullish | LayerOptionsProperties

    Additional options that can be defined for the popup layer.

    Read more...

    outFields?: string[] | nullish

    An array of field names used in the PopupTemplate.

    Read more...

    overwriteActions?: boolean

    Indicates whether actions should replace existing popup actions.

    Read more...

    returnGeometry?: boolean

    Indicates whether to include the feature's geometry for use by the template.

    Read more...

    title?: string | Function | Promise<any>

    The template for defining how to format the title used in a popup.

    Read more...