yx 4 年之前
父節點
當前提交
deb40fd405

+ 10 - 4
src/components/baseEditer.vue

@@ -242,8 +242,8 @@ export default {
                     t.endAnchor = endAnc || null
                 }
             })
-            if (data.Elements && data.Elements.backgroundImg) {
-                let url = data.Elements.backgroundImg
+            if (data.Elements && data.Elements.BackgroundImg) {
+                let url = data.Elements.BackgroundImg
                 console.log(url)
                 this.scene.setBackgroundImgItem(url)
                 this.view.fitSceneToView()
@@ -639,11 +639,11 @@ export default {
                     type: "warning"
                 }); */
                 console.log('%c========', 'color:blue')
-                console.log(data)
                 // 保存json文件到本地
                 let jsonData = JSON.stringify(data, null, 2)
+                console.log(jsonData)
                 let name = `${new Date().getTime()}.json`
-                saveJSON(jsonData, name)
+                // saveJSON(jsonData, name)
                 return true
                 saveGroup(data)
                     .then((res) => {
@@ -739,6 +739,12 @@ export default {
             bus.$on('deleteEquipmentInfo', () => {
                 this.scene.deleteEquipmentInfo()
             })
+            /** ---------------------信息点Item属性修改--------------------- */
+            // 删除信息点
+            bus.$on('changeInfoItemName', (Name) => {
+                this.scene.updateInfoItemName(Name)
+            })
+            /** ---------------------信息点Item属性修改--------------------- */
 
             // 改变图例名称
             bus.$on('changeImageNum', (val) => {

+ 129 - 0
src/components/edit/attrInfo.vue

@@ -0,0 +1,129 @@
+<template>
+    <div class='equipment-attr'>
+        <p>编辑信息点</p>
+        <div class='row'>
+            <div class='row-tit'>名称</div>
+            <a-input v-model='infoData.Name' style='width: 180px' @change='changeInfoName' />
+        </div>
+        <!-- 工程信息化对象列表 -->
+        <div class='row'>
+            <div class='row-tit'>工程信息化对象列表</div>
+        </div>
+        <!-- <div class='row' v-for='(item,index) in AttachObjectIds' :key='index'>
+            <a-input class='input' v-model='AttachObjectIds[index]' type='small' @change='changeAttachObjectIds(index)' />
+        </div> -->
+    </div>
+</template>
+<script>
+import bus from '@/bus'
+import { log } from 'util'
+import Swatches from 'vue-swatches'
+import { cloneDeep } from 'lodash'
+export default {
+    name: 'equipmentAttr',
+    props: {
+        focusItemList: {
+            type: Object,
+            default() {
+                return {}
+            },
+        },
+    },
+    components: { Swatches },
+    data() {
+        return {
+            infoData: {},
+            AttachObjectIds: [], //工程信息化对象 ID 列表
+        }
+    },
+
+    beforeMount() {},
+    created() {
+        this.init()
+    },
+    mounted() {},
+    methods: {
+        /**
+         * @description 添加,删除 工程信息化对象, baseEditer.vue bus事务中做对应处理
+         * @param { Number } flag  -1:删除 1:添加
+         */
+        handleAttach(flag) {
+            switch (flag) {
+                case -1:
+                    bus.$emit('deleteAttachObjectIds')
+                    break
+                default:
+                    bus.$emit('addAttachObjectIds')
+                    break
+            }
+            this.init()
+        },
+        /**
+         * @description
+         */
+        addInfo() {
+            bus.$emit('addEquipmentInfo')
+            this.init()
+        },
+        delInfo() {
+            bus.$emit('deleteEquipmentInfo')
+            this.init()
+        },
+        init() {
+            // 设置信息点名称
+            this.infoData = this.focusItemList.itemList[0].toData()
+            console.log(this.infoData)
+            // console.log(this.infoData)
+        },
+        // 更改设备名称
+        changeInfoName() {
+            bus.$emit('changeInfoItemName', this.infoData.Name)
+        },
+    },
+}
+</script>
+<style lang='less' scoped>
+.equipment-attr {
+    width: 100%;
+    height: 500px;
+    padding: 12px 16px;
+    box-sizing: border-box;
+    overflow-y: scroll;
+    //   background-color: lightblue;
+    .contain {
+        margin: 10px 0;
+    }
+    .row {
+        width: 100%;
+        display: flex;
+        justify-content: space-between;
+        align-items: center;
+        margin-top: 12px;
+        .color-choice {
+            & /deep/ .vue-swatches__trigger {
+                width: 26px !important;
+                height: 26px !important;
+                border-radius: 0px !important;
+            }
+        }
+        .row-tit {
+            color: #1f2429;
+            font-size: 14px;
+        }
+        .input {
+            width: 150px;
+        }
+    }
+    .grid {
+        margin: 10px 15px;
+        .grid-title {
+            font-size: 12px;
+            color: #8d9399;
+        }
+    }
+    .grid-content {
+        // margin-top: 10px;
+        position: relative;
+    }
+}
+</style>

+ 50 - 32
src/components/edit/left_toolbar.vue

@@ -14,6 +14,9 @@
                     <img v-show="item.isHover || item.isChoice " :src="require(`./../../assets/images/${item.hoverImg}`)" alt />
                 </div>
             </li>
+            <li class="info" @click="addInfo">
+                信息点
+            </li>
         </ul>
         <ul class="list-2">
             <li
@@ -171,14 +174,14 @@ export default {
         return {
             // 基础选择
             baseChoice: [
-                {
-                    img: "t-select.png", //logo
-                    hoverImg: "t-select-hover.png", //hoverlogo
-                    isHover: true, //是否hover
-                    isChoice: true,
-                    name: "选择", //类型
-                    type: "choice"
-                },
+                // {
+                //     img: "t-select.png", //logo
+                //     hoverImg: "t-select-hover.png", //hoverlogo
+                //     isHover: true, //是否hover
+                //     isChoice: true,
+                //     name: "选择", //类型
+                //     type: "choice"
+                // },
                 {
                     img: "t-line.png", //logo
                     hoverImg: "t-line-hover.png", //hoverlogo
@@ -195,33 +198,33 @@ export default {
                     name: "画文字", //类型
                     type: "baseText"
                 },
-                {
-                    img: "t-img.png", //logo
-                    hoverImg: "t-img-hover.png", //hoverlogo
-                    isHover: false, //是否hover
-                    isChoice: false,
-                    name: "画图片", //类型
-                    type: "baseImage"
-                }
+                // {
+                //     img: "t-img.png", //logo
+                //     hoverImg: "t-img-hover.png", //hoverlogo
+                //     isHover: false, //是否hover
+                //     isChoice: false,
+                //     name: "画图片", //类型
+                //     type: "baseImage"
+                // }
             ],
             // 系统选择
             systemChoice: [
-                {
-                    img: "t-position.png", //logo
-                    hoverImg: "t-position-hover.png", //hoverlogo
-                    isHover: false, //是否hover
-                    isChoice: false,
-                    name: "位置区域", //类型
-                    type: "Zone"
-                },
-                {
-                    img: "t-equipment.png", //logo
-                    hoverImg: "t-equipment-hover.png", //hoverlogo
-                    isHover: false, //是否hover
-                    isChoice: false,
-                    name: "设备设施", //类型
-                    type: "Image"
-                },
+                // {
+                //     img: "t-position.png", //logo
+                //     hoverImg: "t-position-hover.png", //hoverlogo
+                //     isHover: false, //是否hover
+                //     isChoice: false,
+                //     name: "位置区域", //类型
+                //     type: "Zone"
+                // },
+                // {
+                //     img: "t-equipment.png", //logo
+                //     hoverImg: "t-equipment-hover.png", //hoverlogo
+                //     isHover: false, //是否hover
+                //     isChoice: false,
+                //     name: "设备设施", //类型
+                //     type: "Image"
+                // },
                 {
                     img: "t-papeline.png", //logo
                     hoverImg: "t-papeline-hover.png", //hoverlogo
@@ -296,6 +299,18 @@ export default {
             item.isChoice = true;
             this.$emit("setCmdType", item.type);
         },
+        // 绘制 信息点
+        addInfo(){
+            this.visible = false;
+            this.baseChoice.forEach(item => {
+                item.isChoice = false;
+            });
+            this.systemChoice.forEach(a => {
+                a.isChoice = false;
+            });
+            console.log('addInfo::::::::::')
+            this.$emit("setCmdType", 'info');
+        },
         showDrawer(item) {
             this.showDrawerItem = item;
             console.log("showDrawerItem", this.showDrawerItem);
@@ -498,6 +513,9 @@ export default {
                 top: 0;
             }
         }
+        .info:hover{
+            color: #000;
+        }
     }
     .list-2 {
         padding-top: 1px;

+ 8 - 2
src/components/edit/right_toolbar.vue

@@ -19,8 +19,13 @@
                             <Icon style="vertical-align: middle;" :name="isLock?'lock':'unlock'" />
                         </li>
                     </ul>
-                    <equipment-attr :key="key" v-if="attrType === 'Equipment'" :focusItemList="focusItemList"/>
+                    <!-- 设备 item 属性值组件 -->
+                    <equipmentAttr :key="key" v-if="attrType === 'Equipment'" :focusItemList="focusItemList"/>
+                    <!-- 信息点 item 属性值组件 -->
+                    <attrInfo v-else-if="attrType === 'Info'"  :focusItemList="focusItemList"/>
+                    <!-- 其他属性值组件 -->
                     <attrSelect v-else-if="attrType" :type="attrType" :focusItemList="focusItemList" />
+                    <!-- 项目基础信息 -->
                     <baseInfo v-show='!attrType' ></baseInfo>
                     <!-- <attrSelect v-show="attrType !== 'Equipment' " :type="attrType" :focusItemList="focusItemList" /> -->
                 </div>
@@ -42,6 +47,7 @@
 <script>
 import attrSelect from "@/components/edit/attr_select";
 import equipmentAttr from './equipmentAttr.vue'
+import attrInfo from './attrInfo.vue'
 import baseInfo from './baseInfo.vue'
 import bus from "@/bus";
 import bus2 from "@/bus2";
@@ -92,7 +98,7 @@ export default {
         }
     },
     components: {
-        attrSelect,equipmentAttr,baseInfo
+        attrSelect,equipmentAttr,baseInfo,attrInfo
     },
     created() {
         this.listenElementData();

+ 60 - 3
src/components/mapClass/EditScence.ts

@@ -28,6 +28,7 @@ import { STopologyParser } from '@/lib/parsers/STopologyParser';
 import { SCustomLegendItem } from '@/lib/items/SCustomLegendItem';
 import { SImageShowType } from "@saga-web/graph/lib/enums/SImageShowType";
 import { SEquipmentItem } from "@/lib/items/SEquipmentItem"; // 设备类
+import { SInfoItem } from "@/lib/items/SInfoItem"; // 信息点对象
 
 /**
  * 在线绘图
@@ -151,6 +152,8 @@ export class EditScence extends SGraphScene {
             return
         } else if (obj.itemList[0] instanceof SEquipmentItem) {
             itemType = "Equipment";
+        } else if (obj.itemList[0] instanceof SInfoItem) {
+            itemType = "Info";
         }
         else {
             itemType = ''
@@ -447,6 +450,44 @@ export class EditScence extends SGraphScene {
         this.finishCreated(item);
         this.scenceUpdate(this);
     }
+    /**
+     * 添加信息点item
+     */
+    addInfoItem(event: SMouseEvent): void {
+        const data = {
+            /** ID */
+            ID: uuid(),
+            /** 名称  */
+            Name: '请输入信息点名称',
+            Code: '请输入信息点code',
+            // Type: "Info",
+            GraphElementType: 'Info',
+            AttachObjectIds: [],
+            /** 位置  */
+            Pos: { X: event.x, Y: event.y },
+            Size: { Width: 100, Height: 25 },
+            /** 由应用自己定义  */
+            Properties: {
+                FontSize: 12,
+                Color: "#646c73",
+                Background: "#f7f9facc"
+            },
+        }
+        const item = new SInfoItem(null, data);
+        console.log(item)
+        item.moveTo(event.x, event.y);
+        item.selectable = true;
+        item.moveable = true;
+        this.Nodes.push(item);
+        console.log(this.Nodes)
+        this.addItem(item);
+        // this.Markers.push(item);
+        this.grabItem = null;
+        this.focusItem = item;
+        this.cmd = 'choice';
+        // this.finishCreated(item);
+        this.scenceUpdate(this);
+    }
 
     /**
      * 增加图标lenged图标
@@ -992,15 +1033,15 @@ export class EditScence extends SGraphScene {
         // let element = {
         //     Nodes, Markers, Relations
         // }
-        let backgroundImg: string = ''
+        let BackgroundImg: string = ''
         let element = {
             Nodes,
             Markers,
             Relations,
-            backgroundImg
+            BackgroundImg
         };
         if (this.backgroundImgItem) {
-            element.backgroundImg = this.backgroundImgItem.url
+            element.BackgroundImg = this.backgroundImgItem.url
         }
         return element
     }
@@ -1108,6 +1149,7 @@ export class EditScence extends SGraphScene {
             }
             return this.grabItem.onMouseDown(event);
         }
+        console.log(this.cmd)
         switch (this.cmd) {
             // 画设备
             case "equipment":
@@ -1119,6 +1161,10 @@ export class EditScence extends SGraphScene {
             case 'baseText':
                 this.addTextItem(event);
                 break;
+            // 绘制信息点
+            case 'info':
+                this.addInfoItem(event);
+                break;
             case 'baseImage':
                 this.addImgItem(event)
                 break;
@@ -2031,4 +2077,15 @@ export class EditScence extends SGraphScene {
         // this.focusItem = equipmentItem;
         this.cmd = "choice";
     }
+    /** ---------------------信息点Item属性修改--------------------- */
+    /**
+     * @description 更新信息点名称
+     * @param Name 信息点名称
+     */
+    updateInfoItemName(Name: string) {
+        if (this.focusItem) {
+            this.focusItem.text = Name;
+            this.scenceUpdate(this);
+        }
+    }
 }

+ 0 - 241
src/lib/items/SEquipmentTextItem.ts

@@ -1,241 +0,0 @@
-import { SObjectItem, SImageItem, SGraphItem, STextItem } from "@saga-web/graph/lib";
-import { ItemOrder } from "@saga-web/big/lib";
-import { SColor, SPainter, SRect } from "@saga-web/draw/lib";
-import { SMouseEvent } from "@saga-web/base/lib";
-import { EquipmentData } from "../types/EquipmentData";
-import { uuid } from '@/components/mapClass/until';
-// @ts-ignore
-import { cloneDeep } from 'lodash'
-enum StatusType {
-    /** 普通态    */
-    Normal,
-    /** 编辑态    */
-    Edit
-}
-export class SEquipmentTextItem extends SObjectItem {
-    _textArr: STextItem[] = [];
-    /**保存设备数据 */
-    _epData: EquipmentData | any = {};
-    /** 设备名称 */
-    _name: string = '';
-    get textArr(): STextItem[] {
-        return this._textArr
-    }
-    set textArr(v) {
-        this._textArr = v
-        this.update();
-    }
-    // 将EquipmentData保存起来,以便修改status时,可以找到StatusImage
-    get epData(): EquipmentData {
-        return this._epData;
-    }
-    set epData(v: EquipmentData) {
-        this._epData = v;
-        this.update();
-
-    }
-    _info: any[] = []
-    // 修改信息点名称
-    get info(): [] {
-        // @ts-ignore
-        return this._info
-    }
-    /**
-     * @param data 修改信息点信息
-     */
-    set info(data) {
-        // @ts-ignore
-        let { index, Name, FontSize, Color } = data
-        // 更新信息点名称
-        if (this.epData && index < this.epData.InfoList.length) {
-            // this.textArr[index + 1].text = Name
-            // this.epData.InfoList[index].Name = Name
-        }
-        // item对象属性修改
-        this.textArr[index + 1].text = Name
-        this.textArr[index + 1].font.size = FontSize
-        this.textArr[index + 1].color = Color
-        // 数据修改
-        this.epData.InfoList[index].Name = Name
-        this.epData.InfoList[index].FontSize = FontSize
-        this.epData.InfoList[index].Color = Color
-        this.update();
-    }
-
-    /**
-     *
-     * @param parent 父类
-     * @param epData  需要展示的节点信息
-     */
-    constructor(parent: SGraphItem | null, epData: EquipmentData) {
-        super(parent);
-        // if (epData) epData = cloneDeep(epData)
-        // epData && (this.epData = epData);
-        this.epData = cloneDeep(epData)
-        this.moveable = true;
-        this.id = epData.ID;
-        this.zOrder = ItemOrder.textOrder;
-        this.textArr = [];
-        // 有信息点信息时,绘制信息点信息
-        // 加载设备
-        this.loadEquipment(epData);
-    }
-    /**
-     * 加载设备
-     * @param epData 设备信息
-     */
-    loadEquipment(epData: EquipmentData): void {
-        // 位置
-        this.x = epData.Pos.X;
-        this.y = epData.Pos.Y;
-        // 名称
-        this.name = epData.Name
-        let nameItem = new STextItem(this);
-        // nameItem.moveable = true;
-        nameItem.backgroundColor = SColor.Transparent;
-        nameItem.font.size = 14;
-        nameItem.text = epData.Name;
-        // nameItem.moveTo(-epData.Size.Width / 2, epData.Size.Height / 2 + 7);
-        nameItem.moveTo(10, epData.Size.Height + 7);
-        this.textArr.push(nameItem);
-        // 信息点
-        let { InfoList } = epData;
-
-        InfoList.map(({ Name, X, Y, Width, Height, FontSize, Background, Color, TextAlign }) => {
-            let textItem = new STextItem(this);
-            textItem.backgroundColor = new SColor(Background);
-            textItem.width = Width;
-            textItem.height = Height;
-            textItem.text = Name;
-            textItem.font.size = FontSize;
-            textItem.color = new SColor(Color);
-            textItem.pos.x = X;
-            textItem.pos.y = Y;
-            this.textArr.push(textItem);
-        });
-    }
-
-    /**
-     * 宽高发生变化
-     *
-     * @return  SRect   所有子对象的并集
-     * */
-    boundingRect(): SRect {
-        // return new SRect(-this.width / 2, -this.height / 2, this.width, this.height);
-       /*  let rect = this.img.boundingRect().adjusted(this.img.pos.x, this.img.pos.y, 0, 0);
-        if (this.textArr.length) {
-            for (let text of this.textArr) {
-                rect = rect.unioned(text.boundingRect().adjusted(text.pos.x, text.pos.y, 0, 0));
-            }
-        }
-        return rect.adjusted(-5, -5, 10, 10); */
-    } // Function boundingRect()
-    /**
-     * 转换成data
-     */
-    toData(): EquipmentData {
-        //  更新相关数据
-        this.epData.Name = this.name;
-        this.epData.Pos.X = this.x;
-        this.epData.Pos.Y = this.y;
-        this.epData.Size.Width = this.width;
-        this.epData.Size.Height = this.height;
-        // @ts-ignore
-        // infoList中坐标,名称处理
-        this.epData.InfoList.map((item, index, arr) => {
-            arr[index].X = this.textArr[index + 1].pos.x;
-            arr[index].Y = this.textArr[index + 1].pos.y;
-            arr[index].Name = this.textArr[index + 1].text;
-        });
-        this.epData.GraphElementType = 'Equipment'
-        // @ts-ignore
-        this.epData.Type = 'equipment'
-        return this.epData;
-    }
-    /**
-     * 添加信息点
-     */
-    addEquipmentInfo() {
-        let { InfoList } = this.epData;
-        let textItem = new STextItem(this);
-        let Name, X, Y, Width, Height, FontSize, Background, Color, TextAlign
-        if (InfoList.length) {
-            let info = InfoList[InfoList.length - 1]
-            Background = info.Background
-            X = info.X
-            Y = info.Y + 20
-            Width = info.Width
-            Height = info.Height
-            FontSize = info.FontSize
-            Background = info.Background
-            Color = info.Color
-            TextAlign = info.TextAlign
-            Name = info.Name
-            // { Name, X, Y, Width, Height, FontSize, Background, Color, TextAlign } = InfoList[InfoList.length - 1]
-        } else {
-            // 默认设置
-            Background = '#ffffff'
-            X = this.img.width + 10
-            Y = this.img.height / 2 - 6
-            Width = 100
-            Height = 25
-            FontSize = 14
-            Background = '#ffffff'
-            Color = '#000000'
-            TextAlign = 'center'
-            Name = '请输入'
-        }
-        // 信息点对象 属性修改
-        textItem.backgroundColor = new SColor(Background);
-        textItem.width = Width;
-        textItem.height = Height;
-        textItem.text = '请输入';
-        textItem.font.size = FontSize;
-        textItem.color = new SColor(Color);
-        textItem.pos.x = X;
-        textItem.pos.y = Y;
-        this.textArr.push(textItem);
-        InfoList.push({
-            Code: uuid(),
-            Name: '请输入',
-            X,
-            Y,
-            Width,
-            Height,
-            FontSize,
-            Background,
-            TextAlign,
-            Color,
-        })
-        this.update()
-    }
-    // 删除信息点
-    deleteEquipmentInfo() {
-        this.epData.InfoList.pop()
-        if (this.textArr.length) {
-            this.textArr[this.textArr.length - 1].text = '';
-            this.textArr[this.textArr.length - 1].width = 0;
-            this.textArr[this.textArr.length - 1].height = 0;
-            this.textArr[this.textArr.length - 1].backgroundColor = SColor.Transparent;
-            this.textArr.pop()
-        }
-        this.update()
-    }
-    /**
-     * Item绘制操作
-     *
-     * @param   painter painter对象
-     */
-    onDraw(painter: SPainter): void {
-        painter.pen.lineWidth = painter.toPx(1);
-        painter.pen.color = SColor.Black;
-        painter.brush.color = SColor.Transparent;
-        if (this.equipmentStatus === StatusType.Edit) {
-            painter.drawRect(this.boundingRect());
-            this.textArr.map(item => item.moveable = true)
-        } else {
-            this.textArr.map(item => item.moveable = false)
-
-        }
-    } // Function onDraw()
-}

+ 53 - 0
src/lib/items/SInfoItem.ts

@@ -0,0 +1,53 @@
+import { SGraphItem, STextItem, SLineStyle } from "@saga-web/graph/lib";
+import { SPainter, SColor, SFont } from "@saga-web/draw";
+import { Info } from '../types/Info';
+import { ItemOrder } from '@saga-web/big/lib';
+import { cloneDeep } from 'lodash'
+/**
+ * 信息点Item
+ *
+ * * @author yunxing
+ */
+export class SInfoItem extends STextItem {
+    /** 标识对象数据 */
+    data: Info;
+
+    /**
+     * 构造函数
+     *
+     * @param parent    指向父对象
+     * @param data      标识对象数据
+     */
+    constructor(parent: SGraphItem | null, data: Info) {
+        super(parent);
+        this.zOrder = ItemOrder.textOrder;
+        this.isTransform = false;
+        this.data = cloneDeep(data);
+        this.id = data.ID;
+        this.name = data.Name;
+        this.text = data.Name
+        this.moveTo(data.Pos.X, data.Pos.Y);
+        if (data.Size) {
+            this.width = data.Size.Width;
+            this.height = data.Size.Height;
+        }
+        if (data.Properties && data.Properties.Color) {
+            this.color = new SColor(data.Properties.Color);
+        }
+        if (data.Properties && data.Properties.FontSize) {
+            this.font = new SFont("sans-serif", data.Properties.FontSize);;
+        }
+        if (data.Properties && data.Properties.Background) {
+            this.backgroundColor = new SColor(data.Properties.Background);
+        }
+    } // Constructor
+
+    toData(): Info {
+        this.data.Pos = { X: this.x, Y: this.y };
+        this.data.Size = { Width: this.width, Height: this.height };
+        this.data.Properties.Color = this.color.value;
+        this.data.Properties.Font = this.font.size;
+        this.data.Properties.Background = this.backgroundColor.value;
+        return this.data;
+    }
+} // Class SInfoItem

+ 1 - 1
src/lib/items/section1.js

@@ -26,7 +26,7 @@ let Node1 = [
         ID: '', // ID  自动生成
         Code: '', // 对应设备的信息点 //
         Name: '', // 名称
-        AttachObjectIds: ['Eq001', 'Eq002'], // 返回工程信息化对象 ID 列表
+        AttachObjectIds: [], // 返回工程信息化对象 ID 列表
         GraphElementType: 'Info', // 图例类型 None/Line/Zone/Image/Equipment/Info:非图例/线条/区域类型/图标/设备
         Pos: { X: 0, Y: 0 }, // 位置
         Size: { Width: 100, Height: 25 }, // 大小

+ 45 - 0
src/lib/types/Info.ts

@@ -0,0 +1,45 @@
+
+
+import { SMarkerType } from "@saga-web/big/lib/enums/SMarkerType";
+import { Point } from "@saga-web/big/lib/types/Point";
+import { Size } from "@saga-web/big/lib/types/Size";
+
+/**
+ * 标识对象接口
+ *
+ * @author  yunxing
+ */
+export interface Info {
+    /** ID */
+    ID: string;
+    /** 名称  */
+    Name: string;
+    Code: string;
+    AttachObjectIds: any[];
+    GraphElementType: string;
+    // Type: string;
+    /** 位置  */
+    Pos: Point;
+    /** 缩放  */
+    Scale?: Point;
+    /** 旋转  */
+    Rolate?: Point;
+    /** 大小  */
+    Size?: any;
+    /** 由应用自己定义  */
+    Properties?: any;
+} // Interface Marker
+// let a = {
+//     ID: '', // ID  自动生成
+//     Code: '', // 对应设备的信息点 //
+//     Name: '', // 名称
+//     AttachObjectIds: [], // 返回工程信息化对象 ID 列表
+//     GraphElementType: 'Info', // 图例类型 None/Line/Zone/Image/Equipment/Info:非图例/线条/区域类型/图标/设备
+//     Pos: { X: 0, Y: 0 }, // 位置
+//     Size: { Width: 100, Height: 25 }, // 大小
+//     Properties: {
+//         FontSize: 12,
+//         Background: '#000000',
+//         Color: '#FFFFFF',
+//     }, // 由应用自己定义
+// }