DrawObjectLayer: Difference between revisions
Jump to navigation
Jump to search
(→) |
(→) |
||
Line 6: | Line 6: | ||
<source lang="ts"> | <source lang="ts"> | ||
interface IGdkDrawLayerInfo { | |||
LayerType: "GdkDrawLayer"; | LayerType: "GdkDrawLayer"; | ||
Id: string; | |||
Name?: string; | |||
Description?: string; | |||
Visible?: boolean; | |||
ZoomRange?: [minZoom: number, maxZoom: number]; | |||
ParentLayerId?: string; | |||
LogLevel?: LogLevel; | |||
StoreId?: string; | StoreId?: string; | ||
StyleXml?: UrlOrInlineData; | StyleXml?: UrlOrInlineData; | ||
Line 15: | Line 23: | ||
UpdateIntervalMs?: number; | UpdateIntervalMs?: number; | ||
} | } | ||
</source> | |||
=== Example === | |||
Revision as of 13:57, 26 April 2022
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;
}