Represents encoding options to print the map.

interface EncodeOptions {
    customAttributes: Record<string, unknown>;
    dpi: number;
    format: string;
    i18nManager: I18nManager;
    layout: string;
    mapManager: MapManager;
    pageSize: number[];
    printResolution: number;
    scale: number;
    state: State;
}

Properties

customAttributes: Record<string, unknown>
dpi: number
format: string
i18nManager: I18nManager
layout: string
mapManager: MapManager
pageSize: number[]
printResolution: number
scale: number
state: State