Type alias gmfPrintOptions

gmfPrintOptions: {
    defaultLayout?: string;
    fieldValues?: {
        [x: string]: string | number | boolean;
    };
    goodnessOfFit?: number;
    hiddenAttributes?: string[];
    legend?: OptionsLegendType;
    rotateMask?: boolean;
    scaleInput?: boolean;
}

Type declaration

  • Optional defaultLayout?: string
  • Optional fieldValues?: {
        [x: string]: string | number | boolean;
    }

    optional. Key, value object to define default value in each of your print panel field. The key refers to the property's name of the field. Example: {'comments': 'demo', 'legend': false}. Doesn't work for the DPI and the scale. Server's values are used in priority.

    • [x: string]: string | number | boolean
  • Optional goodnessOfFit?: number
  • Optional hiddenAttributes?: string[]

    The list of attributes that should be hidden.

  • Optional legend?: OptionsLegendType

    Options used to build the legend.

  • Optional rotateMask?: boolean

    True to apply rotation on the mask instead of the map. By default, the map rotates.

  • Optional scaleInput?: boolean

Generated using TypeDoc