DrawObjectLayer: Difference between revisions

From Maria GDK Wiki
Jump to navigation Jump to search
()
()
Line 5: Line 5:




<script source="ts">
export interface IGdkDrawLayerInfo extends IBaseLayerInfo {
    LayerType: "GdkDrawLayer";
    StoreId?: string;
    StyleXml?: UrlOrInlineData;
    FilterXml?: UrlOrInlineData;
    DrawObjectServiceUri?: URL;
    RenderServiceUri?: URL;
    UpdateIntervalMs?: number;
}
</script>





Revision as of 12:34, 26 April 2022

About

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

Setup

<script source="ts"> export interface IGdkDrawLayerInfo extends IBaseLayerInfo {

   LayerType: "GdkDrawLayer";
   StoreId?: string;
   StyleXml?: UrlOrInlineData;
   FilterXml?: UrlOrInlineData;
   DrawObjectServiceUri?: URL;
   RenderServiceUri?: URL;
   UpdateIntervalMs?: number;

}

</script>