Interface WebMapFieldInfo

interface WebMapFieldInfo {
    fieldName?: string;
    format?: WebMapFieldFormat;
    isEditable?: boolean;
    label?: string;
    tooltip?: string;
    visible?: boolean;
    [key: string]: unknown;
}

Indexable

  • [key: string]: unknown

Properties

fieldName?: string
format?: WebMapFieldFormat
isEditable?: boolean
label?: string
tooltip?: string
visible?: boolean