DrawObjectLayer

From Maria GDK Wiki
Revision as of 14:57, 26 April 2022 by Elu (talk | contribs) ()
Jump to navigation Jump to search

About

The Draw Object Layer is used to display tactical graphics served as map tiles from the draw object service.

Setup

interface IGdkDrawLayerInfo {
    LayerType: "GdkDrawLayer";
    Id: string;
    Name?: string;
    Description?: string;
    Visible?: boolean;
    ZoomRange?: [minZoom: number, maxZoom: number];
    ParentLayerId?: string;
    LogLevel?: LogLevel;

    StoreId?: string;
    StyleXml?: UrlOrInlineData;
    FilterXml?: UrlOrInlineData;
    DrawObjectServiceUri?: URL;
    RenderServiceUri?: URL;
    UpdateIntervalMs?: number;
}

Example