Browse Source

add new canvas

haojianlong 5 years ago
parent
commit
bfcdb646d9

+ 4 - 1
package.json

@@ -19,7 +19,10 @@
         "vue": "^2.5.2",
         "vue-axios": "^2.1.4",
         "vue-router": "^3.0.1",
-        "vuex": "^3.1.0"
+        "vuex": "^3.1.0",
+        "@sybotan-web/base": "2.0.51",
+        "@sybotan-web/draw": "2.0.104",
+        "@sybotan-web/graphy": "2.0.81"
     },
     "devDependencies": {
         "ajv": "^6.9.1",

+ 0 - 0
src/assets/graphy/SGraphy/dataType.js


+ 63 - 0
src/assets/graphy/SGraphy/dataType.ts

@@ -0,0 +1,63 @@
+import { SPen, SPainter, SColor } from "@sybotan-web/draw";
+import { SGraphyPolygonItem } from './newItems/SGraphyPolygonItem'
+/**
+ * 接口类型
+ * @param
+ * 传入绘制地图参数的数据类型
+ */
+//path 和paths 的接口类型
+interface dataItemPath {
+    X: number,
+    Y: number,
+    Z: number
+}
+// 一个空间item中的数据类型 
+//包括ColumnList EquipmentList,VirtualWallList,WallList
+interface dataItem {
+    Id: string,
+    Path?: dataItemPath[],
+    PointList: dataItemPath[],
+    BimId?: string,
+    LocationPoint?: dataItemPath,
+    Name?: string,
+    Paths?: dataItemPath[][],
+}
+// 一个空间item中的接口类型 
+// 包括SpaceList
+interface dataSpaceItem {
+    Id: string,
+    // PointList: dataItemPath[],
+    BimId: string,
+    LocationPoint: dataItemPath,
+    Name: string,
+    Paths: dataItemPath[][],
+    id:string
+}
+// 传入的data 的接口类型 
+interface dataInterface {
+    ColumnList: dataItem[],  //柱体
+    EquipmentList: dataItem[], //设备
+    SpaceList: dataSpaceItem[], //空间
+    VirtualWallList: dataItem[], //虚拟墙
+    WallList: dataItem[],    //墙
+}
+//获取绑定空间的接口
+interface businessDataInterface {
+    id:string,
+    name:string,
+    children:string[],
+    isAdjacent:boolean,
+    isAbut:boolean
+}
+// 多边形传入的参数接口
+interface PolygonItemInterface {
+    parent:SGraphyPolygonItem|null //父类
+    space:dataSpaceItem,       //传入的item 参数
+    businessId?:string | null,  //绑定的业务id
+    isBusiness?:number,        //业务类型
+    fillColor?:SColor,         //填充颜色
+    color?:SColor,             //边框颜色
+    businessName?:string|null,  //业务名称
+    width?:number
+}
+export {dataItemPath,dataItem,dataSpaceItem,dataInterface,businessDataInterface,PolygonItemInterface}

+ 163 - 0
src/assets/graphy/SGraphy/mainScene.js

@@ -0,0 +1,163 @@
+var __extends = (this && this.__extends) || (function () {
+    var extendStatics = function (d, b) {
+        extendStatics = Object.setPrototypeOf ||
+            ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
+            function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
+        return extendStatics(d, b);
+    };
+    return function (d, b) {
+        extendStatics(d, b);
+        function __() { this.constructor = d; }
+        d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
+    };
+})();
+import { SGraphyPolygonItem } from './newItems/SGraphyPolygonItem.js';
+import { SGraphyScene } from "@sybotan-web/graphy";
+/**
+ * @name mainScene
+ * @time 2019-07.07;
+ * 添加所有item的场景到scene中
+ */
+var mainScene = /** @class */ (function (_super) {
+    __extends(mainScene, _super);
+    /**
+     * @param data 绘制空间地图得所有参数
+     */
+    function mainScene(data) {
+        var _this_1 = _super.call(this) || this;
+        _this_1._isShowSpace = true; // 是否显示空间;
+        _this_1._isShowWallList = true; //是否展示墙体;
+        _this_1._isShowEquipmentList = true; //是否展示设备;
+        _this_1._isShowVrtualWallList = true; //是否展示虚拟墙
+        _this_1.data = data;
+        _this_1.addAllItemList(data);
+        return _this_1;
+    }
+    Object.defineProperty(mainScene.prototype, "isShowSpace", {
+        // 设置是否显示空间
+        get: function () {
+            return this._isShowSpace;
+        },
+        set: function (b) {
+            this._isShowSpace = b;
+        },
+        enumerable: true,
+        configurable: true
+    });
+    Object.defineProperty(mainScene.prototype, "isShowWallList", {
+        // 设置是否显示墙
+        get: function () {
+            return this._isShowWallList;
+        },
+        set: function (b) {
+            this._isShowWallList = b;
+        },
+        enumerable: true,
+        configurable: true
+    });
+    Object.defineProperty(mainScene.prototype, "isShowEquipmentList", {
+        // 设置是否显示设备
+        get: function () {
+            return this._isShowEquipmentList;
+        },
+        set: function (b) {
+            this._isShowEquipmentList = b;
+        },
+        enumerable: true,
+        configurable: true
+    });
+    Object.defineProperty(mainScene.prototype, "isShowVrtualWallList", {
+        // 设置是否显示虚拟墙
+        get: function () {
+            return this._isShowVrtualWallList;
+        },
+        set: function (b) {
+            this._isShowVrtualWallList = b;
+        },
+        enumerable: true,
+        configurable: true
+    });
+    // 以下是绘制方法
+    /**
+     * 增添所有绘制item(地图);
+    */
+    mainScene.prototype.addAllItemList = function (data) {
+        var space = data.SpaceList;
+        this.addSpaceList(space); //绘制空间
+    };
+    /**
+     * 添加所有空间到scene 中
+     * @param space 空间list
+     */
+    mainScene.prototype.addSpaceList = function (space) {
+        if (space && space.length) {
+            for (var i = 0; i < space.length; i++) {
+                if (space[i].Paths[1] && space[i].Paths[1].length >= 2) {
+                    this.addItem(this.constructeItem({
+                        parent: null,
+                        space: space[i]
+                    }));
+                }
+            }
+            for (var i = 0; i < space.length; i++) {
+                if (space[i].Paths[0] && space[i].Paths[0].length >= 2 && !space[i].Paths[1]) {
+                    this.addItem(this.constructeItem({
+                        parent: null,
+                        space: space[i]
+                    }));
+                }
+            }
+        }
+    };
+    // 绘制墙体
+    mainScene.prototype.addWallList = function () {
+    };
+    // 绘制设备
+    mainScene.prototype.addEquipmentList = function () {
+    };
+    // 绘制柱体
+    mainScene.prototype.addColumnListList = function () {
+    };
+    // 绘制虚拟墙
+    mainScene.prototype.addVrtualWallList = function () {
+    };
+    /**
+     * 产生item实例
+     */
+    mainScene.prototype.constructeItem = function (PolygonItemInterfaceData) {
+        return new SGraphyPolygonItem(PolygonItemInterfaceData);
+    };
+    // 鼠标交互类事件
+    // 点击
+    mainScene.prototype.click = function (_this, fn) {
+        this.root.children.forEach(function (item) {
+            item.connect("click", _this, fn);
+        });
+    };
+    // 双击
+    mainScene.prototype.dbclick = function (_this, fn) {
+        this.root.children.forEach(function (item) {
+            item.connect("doubleClick", _this, fn);
+        });
+    };
+    // 按下
+    mainScene.prototype.mouseDown = function (_this, fn) {
+        this.root.children.forEach(function (item) {
+            item.connect("mouseDown", _this, fn);
+        });
+    };
+    //移动
+    mainScene.prototype.mouseMove = function (_this, fn) {
+        this.root.children.forEach(function (item) {
+            item.connect("mouseMove", _this, fn);
+        });
+    };
+    // 点解结束
+    mainScene.prototype.mouseUp = function (_this, fn) {
+        this.root.children.forEach(function (item) {
+            item.connect("mouseUp", _this, fn);
+        });
+    };
+    return mainScene;
+}(SGraphyScene));
+export default mainScene;

+ 155 - 0
src/assets/graphy/SGraphy/mainScene.ts

@@ -0,0 +1,155 @@
+
+import { SRect, SSize, SPoint } from "@sybotan-web/base";
+import { SGraphyPolygonItem } from './newItems/SGraphyPolygonItem.js'
+import { SGraphyScene, SMouseEvent } from "@sybotan-web/graphy";
+import { SPen, SPainter, SColor } from "@sybotan-web/draw";
+import { dataItemPath, dataItem, dataSpaceItem, dataInterface, PolygonItemInterface } from './dataType.js'   //传入参数的参数接口类型
+
+/**
+ * @name mainScene
+ * @time 2019-07.07;
+ * 添加所有item的场景到scene中
+ */
+
+export default class mainScene extends SGraphyScene {
+
+    data: dataInterface;
+
+    private _isShowSpace: boolean = true;  // 是否显示空间;
+    private _isShowWallList: boolean = true;  //是否展示墙体;
+    private _isShowEquipmentList: boolean = true; //是否展示设备;
+    private _isShowVrtualWallList: boolean = true; //是否展示虚拟墙
+
+
+    // 设置是否显示空间
+    get isShowSpace(): boolean {
+        return this._isShowSpace
+    }
+    set isShowSpace(b: boolean) {
+        this._isShowSpace = b
+    }
+
+    // 设置是否显示墙
+    get isShowWallList(): boolean {
+        return this._isShowWallList
+    }
+    set isShowWallList(b: boolean) {
+        this._isShowWallList = b
+    }
+
+    // 设置是否显示设备
+    get isShowEquipmentList(): boolean {
+        return this._isShowEquipmentList
+    }
+    set isShowEquipmentList(b: boolean) {
+        this._isShowEquipmentList = b
+    }
+
+    // 设置是否显示虚拟墙
+    get isShowVrtualWallList(): boolean {
+        return this._isShowVrtualWallList
+    }
+    set isShowVrtualWallList(b: boolean) {
+        this._isShowVrtualWallList = b
+    }
+
+    /**
+     * @param data 绘制空间地图得所有参数
+     */
+
+    constructor(data: dataInterface) {
+        super()
+        this.data = data;
+        this.addAllItemList(data);
+    }
+
+
+    // 以下是绘制方法
+
+    /** 
+     * 增添所有绘制item(地图);
+    */
+    addAllItemList(data: dataInterface) {
+        let space: dataSpaceItem[] = data.SpaceList;
+        this.addSpaceList(space) //绘制空间
+    }
+
+    /**
+     * 添加所有空间到scene 中
+     * @param space 空间list
+     */
+    addSpaceList(space: dataSpaceItem[]): void {
+        if (space && space.length) {
+            for (let i = 0; i < space.length; i++) {
+                if (space[i].Paths[1] && space[i].Paths[1].length >= 2) {
+                    this.addItem(this.constructeItem(
+                        {
+                            parent: null,
+                            space: space[i]
+                        }));
+                }
+            }
+            for (let i = 0; i < space.length; i++) {
+                if (space[i].Paths[0] && space[i].Paths[0].length >= 2 && !space[i].Paths[1]) {
+                    this.addItem(this.constructeItem(
+                        {
+                            parent: null,
+                            space: space[i]
+                        }));
+                }
+            }
+        }
+    }
+    // 绘制墙体
+    addWallList(): void {
+
+    }
+    // 绘制设备
+    addEquipmentList() {
+    }
+    // 绘制柱体
+    addColumnListList(): void {
+    }
+    // 绘制虚拟墙
+    addVrtualWallList(): void {
+    }
+    /**
+     * 产生item实例
+     */
+    constructeItem(PolygonItemInterfaceData: PolygonItemInterface): SGraphyPolygonItem {
+        return new SGraphyPolygonItem(PolygonItemInterfaceData)
+    }
+    // 鼠标交互类事件
+
+    // 点击
+    click(_this: any, fn: any): void {
+        this.root.children.forEach(item => {
+            item.connect("click", _this, fn);
+        });
+    }
+    // 双击
+    dbclick(_this: any, fn: any): void {
+        this.root.children.forEach(item => {
+            item.connect("doubleClick", _this, fn);
+        });
+    }
+    // 按下
+    mouseDown(_this: any, fn: any) {
+        this.root.children.forEach(item => {
+            item.connect("mouseDown", _this, fn);
+        });
+    }
+    //移动
+    mouseMove(_this: any, fn: any) {
+        this.root.children.forEach(item => {
+            item.connect("mouseMove", _this, fn);
+        });
+    }
+    // 点解结束
+    mouseUp(_this: any, fn: any) {
+        this.root.children.forEach(item => {
+            item.connect("mouseUp", _this, fn);
+        });
+    }
+
+} 

+ 68 - 0
src/assets/graphy/SGraphy/newItems/SGraphyCircleItem.js

@@ -0,0 +1,68 @@
+var __extends = (this && this.__extends) || (function () {
+    var extendStatics = function (d, b) {
+        extendStatics = Object.setPrototypeOf ||
+            ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
+            function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
+        return extendStatics(d, b);
+    };
+    return function (d, b) {
+        extendStatics(d, b);
+        function __() { this.constructor = d; }
+        d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
+    };
+})();
+import { SGraphyItem } from '@sybotan-web/graphy';
+import { SRect } from "@sybotan-web/base";
+import { SColor } from "@sybotan-web/draw";
+/**
+ * 圆Item类
+ *
+ */
+var SGraphyCircleItem = /** @class */ (function (_super) {
+    __extends(SGraphyCircleItem, _super);
+    /**
+     * 构造函数
+     *
+     * @param r          圆半径
+     * @param width      圆线的宽度
+     * @param color      圆线的颜色
+     * @param fillColor  圆填充的颜色
+     * @param parent
+     */
+    function SGraphyCircleItem(parent, r, fillColor, color, width) {
+        if (fillColor === void 0) { fillColor = SColor.White; }
+        if (color === void 0) { color = SColor.Black; }
+        if (width === void 0) { width = 1; }
+        var _this = _super.call(this, parent) || this;
+        _this.fillColor = SColor.White;
+        _this.color = SColor.Black;
+        _this.width = 1;
+        _this.r = r;
+        _this.color = color;
+        _this.fillColor = fillColor;
+        _this.width = width;
+        return _this;
+    } // Constructor()
+    /**
+     * Item对象边界区域
+     *
+     * @return SRect
+     */
+    SGraphyCircleItem.prototype.boundingRect = function () {
+        return new SRect(-this.r, -this.r, 2 * this.r, 2 * this.r);
+    }; // Function boundingRect()
+    /**
+     * Item绘制操作
+     *
+     * @param   painter       painter对象
+     * @param   rect          绘制区域
+     */
+    SGraphyCircleItem.prototype.onDraw = function (painter, rect) {
+        // painter.pen = new SPen(new SColor("#FF0000"), 22);
+        painter.pen.color = this.color;
+        painter.brush.color = this.fillColor;
+        painter.drawCircle(0, 0, this.r);
+    };
+    return SGraphyCircleItem;
+}(SGraphyItem)); // Class SGraphyCircleItem
+export { SGraphyCircleItem };

+ 65 - 0
src/assets/graphy/SGraphy/newItems/SGraphyCircleItem.ts

@@ -0,0 +1,65 @@
+
+import { SGraphyItem } from '@sybotan-web/graphy';
+import { SRect, SSize } from "@sybotan-web/base";
+import { SPen, SPainter, SColor } from "@sybotan-web/draw";
+
+/**
+ * 圆Item类
+ *
+ */
+export class SGraphyCircleItem extends SGraphyItem {
+    r: number;
+    fillColor: SColor = SColor.White;
+    color: SColor = SColor.Black;
+    width: number = 1;
+
+    /**
+     * 构造函数
+     *
+     * @param r          圆半径
+     * @param width      圆线的宽度
+     * @param color      圆线的颜色
+     * @param fillColor  圆填充的颜色
+     * @param parent    
+     */
+    constructor(
+        parent: SGraphyItem | null,
+        r: number,
+        fillColor: SColor = SColor.White,
+        color: SColor = SColor.Black,
+        width: number = 1
+    ) {
+        super(parent);
+        this.r = r;
+        this.color = color;
+        this.fillColor = fillColor;
+        this.width = width;
+    } // Constructor()
+
+    /**
+     * Item对象边界区域
+     * 
+     * @return SRect
+     */
+    boundingRect(): SRect {
+        return new SRect(
+            -this.r,
+            -this.r,
+            2 * this.r,
+            2 * this.r
+        );
+    } // Function boundingRect()
+
+    /**
+     * Item绘制操作
+     *
+     * @param   painter       painter对象
+     * @param   rect          绘制区域
+     */
+    onDraw(painter: SPainter, rect?: SRect): void {
+        // painter.pen = new SPen(new SColor("#FF0000"), 22);
+        painter.pen.color = this.color;
+        painter.brush.color = this.fillColor;
+        painter.drawCircle(0, 0, this.r);
+    }
+} // Class SGraphyCircleItem

+ 190 - 0
src/assets/graphy/SGraphy/newItems/SGraphyPolygonItem.js

@@ -0,0 +1,190 @@
+var __extends = (this && this.__extends) || (function () {
+    var extendStatics = function (d, b) {
+        extendStatics = Object.setPrototypeOf ||
+            ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
+            function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
+        return extendStatics(d, b);
+    };
+    return function (d, b) {
+        extendStatics(d, b);
+        function __() { this.constructor = d; }
+        d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
+    };
+})();
+import { SGraphyItem } from '@sybotan-web/graphy';
+import { SRect, SPoint } from "@sybotan-web/base";
+import { SColor } from "@sybotan-web/draw";
+/**
+ * 不规则多边形Item类
+ *
+ */
+var SGraphyPolygonItem = /** @class */ (function (_super) {
+    __extends(SGraphyPolygonItem, _super);
+    // actived: boolean = false; 				//是否激活
+    /**
+     * 构造函数
+     *
+     * @param pointArr									点坐标list
+     * @param width											边框的宽度
+     * @param color											边框的颜色
+     * @param fillColor   							多边形填充的颜色
+     * @param businessId								空间id
+     * @param businessName							空间名称
+     * @param centerOfGravityPoint			 中心点
+     * @param isBusiness						状态
+     * @param parent
+     */
+    function SGraphyPolygonItem(PolygonItemData) {
+        var _this = _super.call(this, PolygonItemData.parent) || this;
+        _this.fillColor = new SColor('#F2F6FC');
+        _this.color = SColor.Black;
+        _this.width = 0;
+        _this.viewText = '111'; //绘出的文案
+        _this.isBusiness = 1;
+        _this.cacheColor = SColor.Black; //需要缓存的边框
+        _this.cacheFillColor = new SColor('#F2F6FC'); //需要缓存的填充色
+        _this.cacheWidth = 0;
+        // 修改绘制路径格式
+        var newSpacePaths = PolygonItemData.space.Paths[0].map(function (item) {
+            return new SPoint(item.X, -item.Y);
+        });
+        _this.pointArr = newSpacePaths;
+        // // 填充色
+        PolygonItemData.fillColor ? _this.fillColor = PolygonItemData.fillColor : _this.fillColor = new SColor('#F2F6FC');
+        // 边框色
+        PolygonItemData.color ? _this.color = PolygonItemData.color : _this.color = SColor.Black;
+        //边框宽度
+        PolygonItemData.width ? _this.width = PolygonItemData.width : _this.width = 0;
+        //中心点
+        _this.centerOfGravityPoint = {
+            x: PolygonItemData.space.LocationPoint.X,
+            y: PolygonItemData.space.LocationPoint.Y
+        };
+        //业务空间类型
+        PolygonItemData.isBusiness ? _this.isBusiness = PolygonItemData.isBusiness : _this.isBusiness = 1;
+        //业务空间id
+        PolygonItemData.businessId ? _this.businessId = PolygonItemData.businessId : _this.businessId = null;
+        //业务空间名称
+        _this.businessName = PolygonItemData.space.Name;
+        _this.initName = PolygonItemData.space.Name;
+        // 空间id
+        _this.id = PolygonItemData.space.id;
+        return _this;
+    }
+    /**
+     * Item对象边界区域
+     *
+     * @return SRect
+     */
+    SGraphyPolygonItem.prototype.boundingRect = function () {
+        var minX = this.pointArr[0].x;
+        var maxX = minX;
+        var minY = this.pointArr[0].y;
+        var maxY = minY;
+        for (var i = 1; i < this.pointArr.length; i++) {
+            if (this.pointArr[i].x < minX) {
+                minX = this.pointArr[i].x;
+            }
+            if (this.pointArr[i].y < minY) {
+                minY = this.pointArr[i].y;
+            }
+            if (this.pointArr[i].x > maxX) {
+                maxX = this.pointArr[i].x;
+            }
+            if (this.pointArr[i].y > maxY) {
+                maxY = this.pointArr[i].y;
+            }
+        }
+        return new SRect(minX, minY, maxX - minX, maxY - minY);
+    }; // Function boundingRect()
+    /**
+     * 判断点是否在区域内
+     *
+     * @param x
+     * @param y
+     */
+    SGraphyPolygonItem.prototype.contains = function (x, y) {
+        var nCross = 0, point = [x, y], APoints = this.pointArr, length = APoints.length, p1, p2, i, xinters;
+        p1 = APoints[0];
+        for (i = 1; i <= length; i++) {
+            p2 = APoints[i % length];
+            if (point[0] > Math.min(p1.x, p2.x) &&
+                point[0] <= Math.max(p1.x, p2.x)) {
+                if (point[1] <= Math.max(p1.y, p2.y)) {
+                    if (p1.x != p2.x) {
+                        //计算位置信息
+                        xinters = (point[0] - p1.x) * (p2.y - p1.y) / (p2.x - p1.x) + p1.y;
+                        if (p1.y == p2.y || point[1] <= xinters) {
+                            nCross++;
+                        }
+                    }
+                }
+            }
+            p1 = p2;
+        }
+        return nCross % 2 === 1;
+    };
+    /**
+     * Item绘制操作
+     *
+     * @param   painter       painter对象
+     * @param   rect          绘制区域
+     */
+    SGraphyPolygonItem.prototype.onDraw = function (painter, rect) {
+        if (this.pointArr.length) {
+            painter.pen.color = this.color;
+            painter.brush.color = this.fillColor;
+            painter.pen.lineWidth = this.width;
+            painter.drawPolygon(this.pointArr);
+            painter.font.size = this.scale * 200;
+            painter.brush.color = SColor.Black;
+            painter.drawText(this.viewText, this.centerOfGravityPoint.x, this.centerOfGravityPoint.y);
+        }
+    };
+    SGraphyPolygonItem.prototype.onClick = function (event) {
+        this.$emit('click', { item: this, event: event });
+        return true;
+    }; // Function onClick()
+    /**
+  * 鼠标双击事件
+  *
+  * @param   event   保存事件参数
+  * @return  boolean
+  */
+    SGraphyPolygonItem.prototype.onDoubleClick = function (event) {
+        this.$emit('doubleClick', { item: this, event: event });
+        return true;
+    };
+    /**
+  * 鼠标按下事件
+  *
+  * @param   event   保存事件参数
+  * @return  boolean
+  */
+    SGraphyPolygonItem.prototype.onMouseDown = function (event) {
+        this.$emit('mouseDown', { item: this, event: event });
+        return true;
+    }; // Function onMouseDown()
+    /**
+     * 鼠标移动事件
+     *
+     * @param   event   保存事件参数
+     * @return  boolean
+     */
+    SGraphyPolygonItem.prototype.onMouseMove = function (event) {
+        this.$emit('mouseMove', { item: this, event: event });
+        return true;
+    }; // Function onMouseMove()
+    /**
+     * 释放鼠标事件
+     *
+     * @param   event   保存事件参数
+     * @return  boolean
+     */
+    SGraphyPolygonItem.prototype.onMouseUp = function (event) {
+        this.$emit('mouseUp', { item: this, event: event });
+        return true;
+    };
+    return SGraphyPolygonItem;
+}(SGraphyItem)); // Class SGraphyPolygonItem
+export { SGraphyPolygonItem };

+ 198 - 0
src/assets/graphy/SGraphy/newItems/SGraphyPolygonItem.ts

@@ -0,0 +1,198 @@
+
+import { SGraphyItem, SMouseEvent } from '@sybotan-web/graphy'
+import { SRect, SSize, SPoint } from "@sybotan-web/base";
+import { SPen, SPainter, SColor, SFont } from "@sybotan-web/draw";
+import { dataItemPath, dataItem, dataSpaceItem, dataInterface, PolygonItemInterface } from './../dataType'   //传入参数的参数接口类型
+/**
+ * 不规则多边形Item类
+ *
+ */
+export class SGraphyPolygonItem extends SGraphyItem {
+	pointArr: SPoint[];
+	fillColor: SColor =new SColor('#F2F6FC');
+	color: SColor = SColor.Black;
+	width: number =0;
+	businessId: string | null;
+	id: string | null;
+	centerOfGravityPoint: { x: number, y: number };
+	businessName: null | string | undefined;    //业务空间名字
+	initName: null | string | undefined;        //空间名字
+	viewText: string = '111'                         //绘出的文案
+	isBusiness: number = 1;
+	cacheColor:SColor= SColor.Black             //需要缓存的边框
+	cacheFillColor:SColor =	 new SColor('#F2F6FC');        //需要缓存的填充色
+	cacheWidth:number = 0;
+	// actived: boolean = false; 				//是否激活
+	/**
+	 * 构造函数
+	 *
+	 * @param pointArr									点坐标list
+	 * @param width											边框的宽度
+	 * @param color											边框的颜色
+	 * @param fillColor   							多边形填充的颜色 
+	 * @param businessId								空间id
+	 * @param businessName							空间名称
+	 * @param centerOfGravityPoint			 中心点
+	 * @param isBusiness						状态
+	 * @param parent    
+	 */
+	constructor(PolygonItemData: PolygonItemInterface) {
+		super(PolygonItemData.parent);
+		// 修改绘制路径格式
+		let newSpacePaths: SPoint[] = PolygonItemData.space.Paths[0].map(item => {
+			return new SPoint(item.X, -item.Y)
+		});
+		this.pointArr = newSpacePaths;
+		// // 填充色
+		PolygonItemData.fillColor ? this.fillColor = PolygonItemData.fillColor : this.fillColor = new SColor('#F2F6FC');
+		// 边框色
+		PolygonItemData.color ? this.color = PolygonItemData.color : this.color = SColor.Black;
+		//边框宽度
+		PolygonItemData.width ? this.width = PolygonItemData.width : this.width = 0;
+		//中心点
+		this.centerOfGravityPoint = {
+			x: PolygonItemData.space.LocationPoint.X,
+			y: PolygonItemData.space.LocationPoint.Y
+		};
+		//业务空间类型
+		PolygonItemData.isBusiness ? this.isBusiness = PolygonItemData.isBusiness : this.isBusiness = 1;
+		//业务空间id
+		PolygonItemData.businessId ? this.businessId = PolygonItemData.businessId : this.businessId = null;
+		//业务空间名称
+		this.businessName = PolygonItemData.space.Name;
+		this.initName =  PolygonItemData.space.Name;
+		// 空间id
+		this.id = PolygonItemData.space.id;
+	}
+
+	/**
+	 * Item对象边界区域
+	 * 
+	 * @return SRect
+	 */
+	boundingRect(): SRect {
+		let minX = this.pointArr[0].x;
+		let maxX = minX;
+		let minY = this.pointArr[0].y;
+		let maxY = minY;
+		for (let i = 1; i < this.pointArr.length; i++) {
+			if (this.pointArr[i].x < minX) {
+				minX = this.pointArr[i].x
+			}
+			if (this.pointArr[i].y < minY) {
+				minY = this.pointArr[i].y
+			}
+			if (this.pointArr[i].x > maxX) {
+				maxX = this.pointArr[i].x
+			}
+			if (this.pointArr[i].y > maxY) {
+				maxY = this.pointArr[i].y
+			}
+		}
+
+		return new SRect(
+			minX,
+			minY,
+			maxX - minX,
+			maxY - minY
+		);
+	} // Function boundingRect()
+
+	/**
+	 * 判断点是否在区域内
+	 * 
+	 * @param x 
+	 * @param y 
+	 */
+	contains(x: number, y: number): boolean {
+		let nCross = 0,
+			point = [x, y],
+			APoints = this.pointArr,
+			length = APoints.length,
+			p1, p2, i, xinters;
+		p1 = APoints[0];
+		for (i = 1; i <= length; i++) {
+			p2 = APoints[i % length];
+			if (
+				point[0] > Math.min(p1.x, p2.x) &&
+				point[0] <= Math.max(p1.x, p2.x)
+			) {
+				if (point[1] <= Math.max(p1.y, p2.y)) {
+					if (p1.x != p2.x) {
+						//计算位置信息
+						xinters = (point[0] - p1.x) * (p2.y - p1.y) / (p2.x - p1.x) + p1.y;
+						if (p1.y == p2.y || point[1] <= xinters) {
+							nCross++
+						}
+					}
+				}
+			}
+			p1 = p2;
+		}
+		return nCross % 2 === 1
+	}
+	/**
+	 * Item绘制操作
+	 *
+	 * @param   painter       painter对象
+	 * @param   rect          绘制区域
+	 */
+	onDraw(painter: SPainter, rect?: SRect): void {
+		if (this.pointArr.length) {
+			painter.pen.color = this.color;
+			painter.brush.color = this.fillColor;
+			painter.pen.lineWidth = this.width;
+			painter.drawPolygon(this.pointArr);
+			painter.font.size = this.scale*200;
+			painter.brush.color = SColor.Black;
+			painter.drawText(this.viewText,this.centerOfGravityPoint.x,this.centerOfGravityPoint.y)
+		}
+	}
+	onClick(event: SMouseEvent): boolean {
+		this.$emit('click', { item: this, event: event });
+		return true;
+	} // Function onClick()
+	/**
+  * 鼠标双击事件
+  *
+  * @param   event   保存事件参数
+  * @return  boolean
+  */
+	onDoubleClick(event: SMouseEvent): boolean {
+		this.$emit('doubleClick', { item: this, event: event });
+		return true;
+	}
+	/**
+  * 鼠标按下事件
+  *
+  * @param   event   保存事件参数
+  * @return  boolean
+  */
+	onMouseDown(event: SMouseEvent): boolean {
+		this.$emit('mouseDown', { item: this, event: event });
+		return true;
+	} // Function onMouseDown()
+
+    /**
+     * 鼠标移动事件
+     *
+     * @param   event   保存事件参数
+     * @return  boolean
+     */
+	onMouseMove(event: SMouseEvent): boolean {
+		this.$emit('mouseMove', { item: this, event: event });
+		return true;
+	} // Function onMouseMove()
+
+    /**
+     * 释放鼠标事件
+     *
+     * @param   event   保存事件参数
+     * @return  boolean
+     */
+	onMouseUp(event: SMouseEvent): boolean {
+		this.$emit('mouseUp', { item: this, event: event });
+		return true;
+	}
+
+} // Class SGraphyPolygonItem

+ 74 - 0
src/assets/graphy/SGraphy/newItems/SGraphyRectItem.js

@@ -0,0 +1,74 @@
+var __extends = (this && this.__extends) || (function () {
+    var extendStatics = function (d, b) {
+        extendStatics = Object.setPrototypeOf ||
+            ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
+            function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
+        return extendStatics(d, b);
+    };
+    return function (d, b) {
+        extendStatics(d, b);
+        function __() { this.constructor = d; }
+        d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
+    };
+})();
+import { SGraphyItem } from '@sybotan-web/graphy';
+import { SRect } from "@sybotan-web/base";
+import { SColor } from "@sybotan-web/draw";
+/**
+ * 矩形Item类
+ *
+ */
+var SGraphyRectItem = /** @class */ (function (_super) {
+    __extends(SGraphyRectItem, _super);
+    /**
+     * 构造函数
+     *
+     * @param startX      线的起始x坐标
+   * @param startY      线的起始y坐标
+   * @param width       矩形的宽度
+   * @param height      矩形的宽度
+     * @param color       矩形边框的颜色
+     * @param fillColor   矩形填充的颜色
+     * @param parent
+   * @param isVirtual   是否为虚线
+     */
+    function SGraphyRectItem(parent, startX, startY, width, height, fillColor, color, isVirtual) {
+        if (fillColor === void 0) { fillColor = SColor.White; }
+        if (color === void 0) { color = SColor.Black; }
+        if (isVirtual === void 0) { isVirtual = false; }
+        var _this = _super.call(this, parent) || this;
+        _this.fillColor = SColor.White;
+        _this.color = SColor.Black;
+        _this.isVirtual = false;
+        _this.startX = startX;
+        _this.startY = startY;
+        _this.width = width;
+        _this.height = height;
+        _this.color = color;
+        _this.fillColor = fillColor;
+        _this.isVirtual = isVirtual;
+        return _this;
+    } // Constructor()
+    /**
+     * Item对象边界区域
+     *
+     * @return SRect
+     */
+    SGraphyRectItem.prototype.boundingRect = function () {
+        return new SRect(this.startX, this.startY, this.width, this.height);
+    }; // Function boundingRect()
+    /**
+     * Item绘制操作
+     *
+     * @param   painter       painter对象
+     * @param   rect          绘制区域
+     */
+    SGraphyRectItem.prototype.onDraw = function (painter, rect) {
+        // painter.pen = new SPen(this.color, this.width);
+        painter.pen.color = this.color;
+        painter.brush.color = this.fillColor;
+        painter.drawRect(this.startX, this.startY, this.width, this.height);
+    };
+    return SGraphyRectItem;
+}(SGraphyItem)); // Class SGraphyRectItem
+export { SGraphyRectItem };

+ 76 - 0
src/assets/graphy/SGraphy/newItems/SGraphyRectItem.ts

@@ -0,0 +1,76 @@
+
+import { SGraphyItem } from '@sybotan-web/graphy'
+import { SRect, SSize, SPoint } from "@sybotan-web/base";
+import { SPen, SPainter, SColor } from "@sybotan-web/draw";
+
+/**
+ * 矩形Item类
+ *
+ */
+export class SGraphyRectItem extends SGraphyItem {
+  startX: number;
+  startY: number;
+  width: number;
+  height: number;
+  fillColor: SColor = SColor.White;
+  color: SColor = SColor.Black;
+  isVirtual: boolean = false;
+	/**
+	 * 构造函数
+	 *
+	 * @param startX      线的起始x坐标
+   * @param startY      线的起始y坐标
+   * @param width       矩形的宽度
+   * @param height      矩形的宽度
+	 * @param color       矩形边框的颜色 
+	 * @param fillColor   矩形填充的颜色 
+	 * @param parent    
+   * @param isVirtual   是否为虚线
+	 */
+  constructor(
+    parent: SGraphyItem | null,
+    startX: number,
+    startY: number,
+    width: number,
+    height: number,
+    fillColor: SColor = SColor.White,
+    color: SColor = SColor.Black,
+    isVirtual: boolean = false
+  ) {
+    super(parent);
+    this.startX = startX
+    this.startY = startY
+    this.width = width;
+    this.height = height
+    this.color = color;
+    this.fillColor = fillColor;
+    this.isVirtual = isVirtual;
+  } // Constructor()
+
+	/**
+	 * Item对象边界区域
+	 * 
+	 * @return SRect
+	 */
+  boundingRect(): SRect {
+    return new SRect(
+      this.startX,
+      this.startY,
+      this.width,
+      this.height
+    );
+  } // Function boundingRect()
+
+	/**
+	 * Item绘制操作
+	 *
+	 * @param   painter       painter对象
+	 * @param   rect          绘制区域
+	 */
+  onDraw(painter: SPainter, rect?: SRect): void {
+    // painter.pen = new SPen(this.color, this.width);
+    painter.pen.color = this.color;
+    painter.brush.color = this.fillColor;
+    painter.drawRect(this.startX,this.startY,this.width,this.height)
+  }
+} // Class SGraphyRectItem

+ 92 - 0
src/assets/graphy/SGraphy/newItems/SGraphyWallItem.js

@@ -0,0 +1,92 @@
+var __extends = (this && this.__extends) || (function () {
+    var extendStatics = function (d, b) {
+        extendStatics = Object.setPrototypeOf ||
+            ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
+            function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
+        return extendStatics(d, b);
+    };
+    return function (d, b) {
+        extendStatics(d, b);
+        function __() { this.constructor = d; }
+        d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
+    };
+})();
+import { SGraphyItem } from '@sybotan-web/graphy';
+import { SRect } from "@sybotan-web/base";
+import { SColor } from "@sybotan-web/draw";
+/**
+ * 墙Item类
+ *
+ */
+var SGraphyWallItem = /** @class */ (function (_super) {
+    __extends(SGraphyWallItem, _super);
+    /**
+     * 构造函数
+     *
+     * @param pointArr  		点坐标list
+     * @param isVirtual 		墙类型(实体墙-虚拟墙)
+     * @param color  				墙的颜色
+     * @param fillColor  		墙的填充颜色
+     * @param width   			墙的宽度
+     * @param parent
+     */
+    function SGraphyWallItem(parent, pointArr, isVirtual, fillColor, color, width) {
+        if (isVirtual === void 0) { isVirtual = false; }
+        if (fillColor === void 0) { fillColor = SColor.White; }
+        if (color === void 0) { color = SColor.Black; }
+        if (width === void 0) { width = 1; }
+        var _this = _super.call(this, parent) || this;
+        _this.isVirtual = false;
+        _this.fillColor = SColor.White;
+        _this.color = SColor.Black;
+        _this.width = 1;
+        _this.isVirtual = isVirtual;
+        _this.pointArr = pointArr;
+        _this.color = color;
+        _this.fillColor = fillColor;
+        _this.width = width;
+        return _this;
+    } // Constructor()
+    /**
+     * Item对象边界区域
+     *
+     * @return SRect
+     */
+    SGraphyWallItem.prototype.boundingRect = function () {
+        var minX = this.pointArr[0].x;
+        var maxX = minX;
+        var minY = this.pointArr[0].y;
+        var maxY = minY;
+        for (var i = 1; i < this.pointArr.length; i++) {
+            if (this.pointArr[i].x < minX) {
+                minX = this.pointArr[i].x;
+            }
+            if (this.pointArr[i].y < minY) {
+                minY = this.pointArr[i].y;
+            }
+            if (this.pointArr[i].x > maxX) {
+                maxX = this.pointArr[i].x;
+            }
+            if (this.pointArr[i].y > maxY) {
+                maxY = this.pointArr[i].y;
+            }
+        }
+        return new SRect(minX, minY, maxX - minX, maxY - minY);
+    }; // Function boundingRect()
+    /**
+     * Item绘制操作
+     *
+     * @param   painter       painter对象
+     * @param   rect          绘制区域
+     */
+    SGraphyWallItem.prototype.onDraw = function (painter, rect) {
+        if (this.pointArr.length) {
+            // painter.pen = new SPen(this.color, this.width);
+            painter.pen.color = this.color;
+            painter.brush.color = this.fillColor;
+            painter.drawPolyline(this.pointArr);
+        }
+    };
+    return SGraphyWallItem;
+}(SGraphyItem)); // Class SGraphyPolygonItem
+export { SGraphyWallItem };

+ 89 - 0
src/assets/graphy/SGraphy/newItems/SGraphyWallItem.ts

@@ -0,0 +1,89 @@
+
+import { SGraphyItem } from '@sybotan-web/graphy'
+import { SRect, SSize, SPoint } from "@sybotan-web/base";
+import { SPen, SPainter, SColor } from "@sybotan-web/draw";
+
+/**
+ * 墙Item类
+ *
+ */
+export class SGraphyWallItem extends SGraphyItem {
+	pointArr: SPoint[];
+	isVirtual: boolean = false;
+	fillColor: SColor = SColor.White;
+	color: SColor = SColor.Black;
+	width: number = 1;
+	/**
+	 * 构造函数
+	 *
+	 * @param pointArr  		点坐标list
+	 * @param isVirtual 		墙类型(实体墙-虚拟墙)
+	 * @param color  				墙的颜色
+	 * @param fillColor  		墙的填充颜色
+	 * @param width   			墙的宽度
+	 * @param parent    
+	 */
+	constructor(
+		parent: SGraphyItem | null,
+		pointArr: SPoint[],
+		isVirtual: boolean = false,
+		fillColor: SColor = SColor.White,
+		color: SColor = SColor.Black,
+		width: number = 1,
+	) {
+		super(parent);
+		this.isVirtual = isVirtual;
+		this.pointArr = pointArr;
+		this.color = color;
+		this.fillColor = fillColor;
+		this.width = width;
+	} // Constructor()
+
+	/**
+	 * Item对象边界区域
+	 * 
+	 * @return SRect
+	 */
+	boundingRect(): SRect {
+		let minX = this.pointArr[0].x;
+		let maxX = minX;
+		let minY = this.pointArr[0].y;
+		let maxY = minY;
+		for (let i = 1; i < this.pointArr.length; i++) {
+			if (this.pointArr[i].x < minX) {
+				minX = this.pointArr[i].x
+			}
+			if (this.pointArr[i].y < minY) {
+				minY = this.pointArr[i].y
+			}
+			if (this.pointArr[i].x > maxX) {
+				maxX = this.pointArr[i].x
+			}
+			if (this.pointArr[i].y > maxY) {
+				maxY = this.pointArr[i].y
+			}
+		}
+
+		return new SRect(
+			minX,
+			minY,
+			maxX - minX,
+			maxY - minY
+		);
+	} // Function boundingRect()
+
+	/**
+	 * Item绘制操作
+	 *
+	 * @param   painter       painter对象
+	 * @param   rect          绘制区域
+	 */
+	onDraw(painter: SPainter, rect?: SRect): void {
+		if (this.pointArr.length) {
+			// painter.pen = new SPen(this.color, this.width);
+			painter.pen.color = this.color;
+			painter.brush.color = this.fillColor;
+			painter.drawPolyline(this.pointArr)
+		}
+	}
+} // Class SGraphyPolygonItem

+ 871 - 0
src/views/data_admin/buildGraphy/graphyCanvas-copy.vue

@@ -0,0 +1,871 @@
+<template>
+    <div ref="graphyMain" class="canvasGraphy">
+        <div v-if="type != 3" class="center" style="height: 400px;padding-top: 315px; box-sizing:border-box;">
+            <i class="icon-wushuju iconfont"></i>
+            <p>{{type == 1 ? '请选择楼层' : '当前楼层尚无平面图,请去空间管理根据模型生成'}}</p>
+        </div>
+        <div style="width:100%;" v-else>
+            <canvas id="canvas" :width="canvasW" :height="canvasH"></canvas>
+        </div>
+        <div v-if="type == 3" style="height: 40px;z-index:999;overflow: hidden;transform: translateX(-50%);position: absolute;bottom: 10%;left: 50%;">
+            <el-button size="small" @click="smallSize" type="primary">- 缩小</el-button>
+            <el-button size="small" @click="suitableSize" type="primary">合适比例</el-button>
+            <el-button size="small" @click="bigSize" type="primary">+ 放大</el-button>
+        </div>
+        <div v-show="menuShow" id="menu" ref="menu">
+            <p v-if="pointShow" @click="getDatails">编辑该标签</p>
+            <p v-if="pointShow" @click="clearXY">清除该点位的坐标</p>
+            <p v-if="pointShow" @click="noLocate">修改为无法定位到楼层的点位</p>
+        </div>
+    </div>
+</template>
+
+<script>
+    import axios from "axios";
+    //引擎的引用
+    import {
+        SGraphyScene,
+        SGraphyRectItem,
+        SGraphyLineItem,
+        SGraphyPolygonItem,
+        SGraphyVirtualItem,
+        SGraphyImageItem,
+        SGraphyPillarItems,
+        mainScene
+    } from "@/assets/graphy";
+    import pako from '@/assets/pako/pako'
+    import { SGraphyView } from "@sybotan-web/graphy";
+    import { SPen, SPainter, SColor } from "@sybotan-web/draw";
+    import tools from "@/utils/scan/tools";
+    import {
+        updatePoint,
+        getPoint,
+        formBIMToPri,
+        getPointList,
+        updateBusiness
+    } from "@/api/scan/request";
+    import { mapGetters, mapActions } from "vuex";
+    export default {
+        name: "HelloWorld",
+        props: {
+            param: null
+        },
+        data() {
+            return {
+                view: "",
+                mainScene: new MainScene(),
+                dataMax: "", //最大值最小值数据
+                scene: {
+                    x: 0,
+                    y: 0
+                },
+                id: null,
+                menuShow: false, //右键菜单的显示
+                lineShow: false,
+                pointShow: false,
+                canvasH: 600,
+                canvasW: 800,
+                detaleItem: null, //需要删除的数组
+                wallArr: [], //虚拟墙添加时的数组
+                wallList: [], //处理后的墙的线条
+                detaleLine: [], //需要删除的虚拟墙
+                type: 1, //1  没有选择楼层, 2没有平面图, 3有平面图
+                data: {},
+                list: "",
+                buildMess: {},
+                imageUrl: "/image-service/common/image_get?systemId=dev&key=graphy.png"
+            };
+        },
+        computed: {
+            ...mapGetters('layout', ['projectId', 'secret', 'userId'])
+        },
+        created() {},
+        mounted() {
+            this.resize()
+        },
+        methods: {
+            resize() {
+                this.param.ProjId = this.projectId
+                this.param.secret = this.secret
+                this.param.UserId = this.userId
+                this.canvasW =
+                    document.getElementsByClassName("graphy-main")[0].offsetWidth - 2;
+                this.canvasH =
+                    document.getElementsByTagName("body")[0].offsetHeight - 167;
+            },
+            pointToSpace() {
+                let data = [] //空间数组列表
+                this.mainScene.root.children.map(item => {
+                    if (item.type == 3) {
+                        data.push(item)
+                    }
+                })
+                let relation = []
+                this.list.map(item => {
+                    data.map(child => {
+                        if (tools.isIn(item.X, item.Y * -1, child.containsArr)) {
+                            relation.push({
+                                pointId: item.id,
+                                spaceId: child.id,
+                                pointName: item.Name
+                            })
+                        }
+                    })
+                })
+                //找到没有元空间id的对象,取出对应的array
+                let noIdList = [],
+                    hasIdList = []
+                relation.map(item => {
+                    if (!!item.spaceId) {
+                        hasIdList.push(item)
+                    } else {
+                        noIdList.push(item)
+                    }
+                })
+                let name = ""
+                if (noIdList.length) {
+                    for (let i = 0; i < noIdList.length; i++) {
+                        name += noIdList[i].pointName + "、"
+                    }
+                }
+                let msg = noIdList.length ? "一个空间下重复的点位标签信息录入将会被覆盖!以下标签所在的元空间不存在元空间id:" + name + ",是否继续" : "一个空间下重复的点位标签信息录入将会被覆盖!是否将其标签所在的信息录入元空间中?"
+                this.$confirm(msg, "提示").then(_ => {
+                    this.getPointList(hasIdList)
+                }).catch(_ => {
+                    this.$message("取消关联")
+                })
+            },
+            //获取标签列表
+            getPointList(hasIdList) {
+                let idList = hasIdList.map(item => {
+                    return item.pointId
+                })
+                let param = {
+                    IdList: idList,
+                    ProjId: this.param.ProjId,
+                    UserId: this.param.UserId,
+                }
+                getPointList(param, res => {
+                    console.log(res)
+                    if (res.PointList && res.PointList.length) {
+                        hasIdList.map(item => {
+                            res.PointList.map(child => {
+                                if (child.PointId == item.pointId) {
+                                    item.Pic = child.ImageList
+                                    item.LocalId = child.PointLocalId
+                                }
+                            })
+                        })
+                        this.setMess(hasIdList)
+                    }
+                })
+            },
+            //给空间中写入信息
+            setMess(hasIdList) {
+                let param = {
+                    data: {
+                        criterias: null
+                    },
+                    ProjId: this.param.projId,
+                    secret: this.param.secret
+                }
+                hasIdList = tools.arrayUnique(hasIdList, "spaceId")
+                param.data.criterias = hasIdList.map(item => {
+                    let criteria = {
+                        infos: {}
+                    }
+                    if (!!item.Pic && item.Pic.length) {
+                        criteria.infos.Pic = [{
+                            value: item.Pic.map(child => {
+                                return {
+                                    key: child.key,
+                                    name: child.name,
+                                    type: child.type,
+                                    systemId: "dataPlatform"
+                                }
+                            })
+                        }]
+                    }
+                    criteria.id = item.spaceId
+                    criteria.infos.RoomLocalName = [{
+                        value: item.pointName || ""
+                    }]
+                    criteria.infos.RoomLocalID = [{
+                        value: item.LocalId || ""
+                    }]
+                    return criteria
+                })
+                updateBusiness(param).then(res => {
+                    console.log(res)
+                })
+            },
+            //获取数据
+            getData(data) {
+                if (!data.map) {
+                    this.type = 2;
+                } else {
+                    this.buildMess = data;
+                    this.type = 3;
+                    // this.getJson(this.buildMess.map);
+                }
+            },
+            getJson(jsonId) {
+                axios({
+                        method: 'get',
+                        url: "/image-service/common/file_get/" + jsonId + "?systemId=revit",
+                        data: {},
+                        responseType: 'blob',
+                        // contentType: "charset=utf-8"
+                    })
+                    .then(res => {
+                        let data = null
+                        var blob = res.data;
+                        var reader = new FileReader();
+                        reader.readAsBinaryString(blob)
+                        let _this = this
+                        reader.onload = function(readerEvt) {
+                            var binaryString = readerEvt.target.result;
+                            // let base64Data = btoa(binaryString)
+                            let base64Data = btoa(binaryString)
+                            let unGzipData = pako.unzip(base64Data)
+                            data = unGzipData
+                            _this.dataMax = tools.getPoint(data);
+                            if (data.WallList && data.WallList.length) {
+                                tools.changeMap(data.WallList, -1, "PointList");
+                            }
+                            if (data.SpaceList && data.SpaceList.length) {
+                                tools.changeMap(data.SpaceList, -1, "Paths");
+                            }
+                            if (data.ColumnList && data.ColumnList.length) {
+                                tools.changeMap(data.ColumnList, -1, "Path");
+                            }
+                            if (data.VirtualWallList && data.VirtualWallList.length) {
+                                tools.changeMap(data.VirtualWallList, -1, "PointList");
+                            }
+                            if (data.EquipmentList && data.EquipmentList.length) {
+                                tools.changeMap(data.EquipmentList, -1, "PointList");
+                            }
+                            let ids = [];
+                            console.log(data, 'data2222')
+                            if (data.SpaceList && data.SpaceList.length) {
+                                data.SpaceList.map(items => {
+                                    items.BimId = _this.buildMess.code + ":" + items.BimId;
+                                    ids.push(items.BimId);
+                                });
+                            } else {
+                                _this.$message("没有元空间数据")
+                            }
+                            if (ids.length) {
+                                _this.createCanvas(ids, data);
+                            } else {
+                                _this.$message("没有元空间数据")
+                                _this.type = 2
+                                if (!!this.view && !!this.view.scene) {
+                                    this.view.scene.root.children = [];
+                                    this.view = null;
+                                }
+                            }
+                        };
+                    });
+            },
+            //创建实例
+            async createCanvas(ids, data) {
+                //初始化
+                if (!!this.view && !!this.view.scene) {
+                    this.view.scene.root.children = [];
+                    this.view = null;
+                }
+                if (this.type != 3) {
+                    return;
+                }
+                this.view = new SGraphyView("canvas", this.mainScene);
+                this.view.onDraw();
+                this.view.canvasView.addEventListener("mouseup", this.dataChange);
+                this.view.canvasView.addEventListener("contextmenu", this.contextMenu);
+                this.view.canvasView.addEventListener("mousemove", this.canvasMove);
+                //添加事件使右键菜单隐藏
+                window.addEventListener("click", this.menuNone);
+                //   this.bimIdToId(ids, data);
+                await this.bimIdToId(ids, data);
+                //   this.getJson(this.buildMess.map)
+            },
+            //事件:canvas的划过事件
+            canvasMove(e) {},
+            //画虚拟墙
+            addLine() {
+                this.view.canvasView.addEventListener("click", this.addLineClick);
+            },
+            //画点位坐标
+            doPoint(list) {
+                console.log("list", list)
+                this.list = list;
+                this.getJson(this.buildMess.map)
+            },
+            //排序函数
+            compare(property) {
+                return function(a, b) {
+                    let value1 = a[property];
+                    let value2 = b[property];
+                    return value1 - value2;
+                };
+            },
+            //删除虚拟墙
+            detaleWall() {
+                let arr = this.view.scene.root.children;
+                let index = arr.indexOf(this.detaleLine);
+                if (index > -1) {
+                    arr.splice(index, 1);
+                    this.detaleLine = null;
+                }
+            },
+            //获取点到线的最短距离
+            getMinDistance(arr, dot) {
+                let len;
+                //如果arr[0].x==arr[1].x 说明是条竖着的线
+                if (arr[0].x - arr[1].x == 0) {
+                    len = Math.abs(dot.X - arr[0].x);
+                } else {
+                    let A = (arr[0].y - arr[1].y) / (arr[0].x - arr[1].x);
+                    let B = arr[0].y - A * arr[0].x;
+                    len = Math.abs((A * dot.X + B - dot.Y) / Math.sqrt(A * A + 1));
+                }
+                return {
+                    min: len,
+                    line: arr
+                };
+            },
+            //获取最近的交点
+            getIntersection(arr, point) {
+                let P = {};
+                // 斜率为:k = ( pt2.y - pt1. y ) / (pt2.x - pt1.x );
+                // 该直线方程为:y = k* ( x - pt1.x) + pt1.y。
+                //其垂线的斜率为 - 1 / k,垂线方程为:y = (-1/k) * (x - point.x) + point.y 。
+                //联立两直线方程解得:x = ( k^2 * pt1.x + k * (point.y - pt1.y ) + point.x ) / ( k^2 + 1) ,y = k * ( x - pt1.x) + pt1.y;
+                //如果arr[0].x==arr[1].x 说明是条竖着的线
+                if (arr[0].x == arr[1].x) {
+                    P.x = arr[0].x;
+                    P.y = point.Y;
+                } else {
+                    let k = (arr[1].y - arr[0].y) / (arr[1].x - arr[0].x);
+                    // let y = k * (x - arr[0].x) + arr[0].y;
+                    // let y1 = (-1/k) * (x - point.X) + point.Y
+                    // let x =
+                    //     (k * k * arr[0].x + k * (point.Y - arr[0].y) + point.X) /
+                    //     (k * k * k),
+                    //   y = k * (x - arr[0].x) + arr[0].y;
+                    // if(x > arr[0].x && x > arr[1].x){
+                    //   if(arr[0].x > arr[1].x){
+                    //     x = arr[0].x
+                    //     y = arr[0].y
+                    //   }else{
+                    //     x = arr[1].x
+                    //     y = arr[1].y
+                    //   }
+                    // }
+                    // P.x = x
+                    // P.y = y
+                    let A = (arr[0].y - arr[1].y) / (arr[0].x - arr[1].x);
+                    let B = arr[0].y - A * arr[0].x;
+                    let m = point.X + A * point.Y;
+                    P.x = (m - A * B) / (A * A + 1);
+                    P.y = A * P.x + B;
+                }
+                return P;
+            },
+            //右键菜单的查看详情
+            getDatails() {
+                let arr = this.view.scene.root.children;
+                let index = arr.indexOf(this.detaleItem);
+                this.$emit("getDetails", {
+                    Id: arr[index].id
+                });
+            },
+            //右键的清除该点位的坐标
+            clearXY() {
+                let param = {
+                    PointId: this.detaleItem.id,
+                    ProjId: this.param.ProjId,
+                    UserId: this.param.UserId
+                };
+                this.changePoint(param, {
+                    x: 0,
+                    y: 0
+                }, false);
+            },
+            //右键的修改为无法定位到楼层的点位
+            noLocate() {
+                let param = {
+                    PointId: this.detaleItem.id,
+                    ProjId: this.param.ProjId,
+                    UserId: this.param.UserId
+                };
+                this.changePoint(param, {
+                    x: 0,
+                    y: 0
+                }, 2);
+            },
+            //右键菜单隐藏
+            menuNone() {
+                this.menuShow = this.lineShow = this.pointShow = false;
+            },
+            async bimIdToId(ids, data) {
+                await formBIMToPri({
+                        type: ["Si"],
+                        ids: ids,
+                        ProjId: this.param.ProjId,
+                        secret: this.param.secret
+                    })
+                    .then(res => {
+                        if (res.data.Result == "success") {
+                            data.SpaceList.map((item, index) => {
+                                res.data.Content.map((i, li) => {
+                                    //判断bimId是否相同
+                                    if (item.BimId == i.infos.BIMID) {
+                                        item.id = i.id;
+                                    }
+                                });
+                            });
+                            // this.createCanvas();
+                            // this.initGraphy(data);
+                            this.initGraphy(data);
+                            return data
+                        } else {
+                            this.$message.error(res.data.ResultMsg);
+                        }
+                    })
+                    .catch(() => {
+                        this.$message.error("请求出错");
+                    });
+            },
+            //实例化视图
+            initGraphy(data) {
+                this.view.pos.x = this.view.pos.y = -50;
+                let equip = data.EquipmentList,
+                    wall = data.WallList,
+                    virtual = data.VirtualWallList,
+                    space = data.SpaceList,
+                    column = data.ColumnList,
+                    spaceStr;
+                //空间
+                if (space && space.length) {
+                    for (let i = 0; i < space.length; i++) {
+                        if (space[i].Paths[0] && space[i].Paths[0].length >= 2) {
+                            spaceStr = new SGraphyPolygonItem(
+                                space[i].Paths[0],
+                                1,
+                                "red",
+                                colorArr[i % 10],
+                                space[i].id
+                            );
+                            this.mainScene.addItem(spaceStr);
+                        }
+                        for (let j = 0; j < space[i].Paths.length; j++) {
+                            if (space[i].Paths[0] && j > 1 && space[i].Paths[j].length >= 2) {
+                                spaceStr = new SGraphyPolygonItem(
+                                    space[i].Paths[j],
+                                    2,
+                                    "#fff",
+                                    "#fff",
+                                    space[i].id
+                                );
+                                this.mainScene.addItem(spaceStr);
+                            }
+                        }
+                    }
+                }
+                // 画柱子
+                if (column && column.length) {
+                    for (let i = 0; i < column.length; i++) {
+                        if (column[i].Path && column[i].Path.length >= 2) {
+                            spaceStr = new SGraphyPolygonItem(
+                                column[i].Path,
+                                1,
+                                "#000",
+                                "#000"
+                            );
+                            this.mainScene.addItem(spaceStr);
+                        }
+                    }
+                }
+                // 画墙
+                if (wall && wall.length) {
+                    for (let i = 0; i < wall.length; i++) {
+                        for (let j = 0; j < wall[i].PointList.length - 1; j++) {
+                            let str = "wall" + i;
+                            str = new SGraphyLineItem(
+                                wall[i].PointList[j].X,
+                                wall[i].PointList[j].Y,
+                                wall[i].PointList[j + 1].X,
+                                wall[i].PointList[j + 1].Y
+                            );
+                            this.mainScene.addItem(str);
+                        }
+                    }
+                    wall.map((res, index) => {
+                        if (res.PointList.length > 1) {
+                            res.PointList.map((list, inde) => {
+                                if (res.PointList[inde + 1] != undefined) {
+                                    this.wallList.push([{
+                                            x: list.X,
+                                            y: list.Y
+                                        },
+                                        {
+                                            x: res.PointList[inde + 1].X,
+                                            y: res.PointList[inde + 1].Y
+                                        }
+                                    ]);
+                                } else {
+                                    return undefined;
+                                }
+                            });
+                        }
+                    });
+                }
+                // //画虚拟墙
+                if (virtual && virtual.length) {
+                    for (let i = 0; i < virtual.length; i++) {
+                        for (let j = 0; j < virtual[i].PointList.length - 1; j++) {
+                            let str = "virtual" + i + j;
+                            str = new SGraphyVirtualItem(
+                                virtual[i].PointList[j].X,
+                                virtual[i].PointList[j].Y,
+                                virtual[i].PointList[j + 1].X,
+                                virtual[i].PointList[j + 1].Y,
+                                "green",
+                                2,
+                                true,
+                                true
+                            );
+                            this.mainScene.addItem(str);
+                        }
+                    }
+                }
+                if (this.list && this.list.length) {
+                    this.list = this.list.map(item => {
+                        if (item.X == 0 && item.Y == 0) {
+                            return undefined;
+                        } else {
+                            return {
+                                id: item.Id,
+                                X: item.X,
+                                Y: item.Y,
+                                Name: item.Name
+                            };
+                        }
+                    });
+                    this.list = this.list.filter(item => item);
+                    for (let i = 0; i < this.list.length; i++) {
+                        let space = "point" + i;
+                        let url = this.imageUrl;
+                        space = new SGraphyImageItem(30, 30, url, this.list[i].id);
+                        space.moveTo(this.list[i].X, this.list[i].Y * -1);
+                        this.mainScene.addItem(space);
+                    }
+                }
+                //获取中心点
+                let rect = this.view.scene.worldRect();
+                //初始化画布缩放比例
+                this.view.scale = 1;
+                //计算缩放比例
+                this.view.scale = Math.min(
+                    this.view.width / (rect.width * 1.2),
+                    this.view.height / (rect.height * 1.2)
+                );
+                this.view.minScale = this.view.scale / 10
+                this.view.maxScale = this.view.scale * 10
+                // 移动画布
+                this.view.pos.x =
+                    (-(rect.right + rect.left) / 2) * this.view.scale + this.view.width / 2;
+                this.view.pos.y =
+                    (-(rect.bottom + rect.top) / 2) * this.view.scale +
+                    this.view.height / 2;
+            },
+            // 定位
+            locationGraphy(point) {
+                // 移动画布
+                this.view.pos.x = -point.X * this.view.scale + this.view.width / 2;
+                this.view.pos.y = -point.Y * this.view.scale + this.view.height / 2;
+                this.view.scale = this.view.scale;
+            },
+            //点击按钮
+            addPoint(item) {
+                let bbox = this.view.canvasView.getBoundingClientRect();
+                this.id = item.Id;
+                this.view.canvasView.style.cursor =
+                    "url(http://prod.dp.sagacloud.cn:28888/image-service/common/image_get?systemId=dev&key=graphy.png),auto";
+                this.view.canvasView.addEventListener("click", this.getPoint);
+            },
+            //获取鼠标相对canvas的位置
+            getMouseCanvas(e) {
+                let bbox = this.view.canvasView.getBoundingClientRect();
+                let x = e.clientX - bbox.left,
+                    y = e.clientY - bbox.top;
+                return {
+                    x: x,
+                    y: y
+                };
+            },
+            //修改点位坐标信息
+            changePoint(getParam, pointWall, falg, createPoint) {
+                let pointList = null;
+                getPoint(getParam).then(res => {
+                    if (res.data.Result == "success") {
+                        let param = {
+                            ProjId: this.param.ProjId,
+                            UserId: this.param.UserId,
+                            PointList: res.data.PointList[0]
+                        };
+                        param.PointList.X = pointWall.x;
+                        param.PointList.Y = pointWall.y * -1;
+                        if (!param.PointList.FloorId) {
+                            param.PointList.FloorId = this.data.code;
+                        }
+                        if (falg == 2) {
+                            param.PointList.FloorId = "";
+                        }
+                        updatePoint(param).then(res => {
+                            if (res.data.Result == "success") {
+                                this.id = null;
+                                if (falg == 1) {
+                                    this.mainScene.addItem(createPoint);
+                                    this.$message.success("标记成功");
+                                } else if (falg == 2) {
+                                    this.view.scene.removeItem(this.detaleItem);
+                                    this.detaleItem = null;
+                                    this.$message.success("修改成功");
+                                } else if (falg == 3) {
+                                    this.detaleItem = null;
+                                    this.$message.success("修改成功");
+                                } else {
+                                    this.view.scene.removeItem(this.detaleItem);
+                                    this.detaleItem = null;
+                                    this.$message.success("修改成功");
+                                }
+                                this.$emit("resetPoint");
+                            } else {
+                                this.$message("标记失败,请重新标记");
+                            }
+                        });
+                    } else {
+                        this.$message.error("获取点位信息失败");
+                    }
+                });
+            },
+            /** canvas事件------------------------------------------------------------------------------------*/
+            //点击事件
+            getPoint(e) {
+                let pointMess = this.getMouseCanvas(e);
+                // 获取真实的point
+                let pointWall = this.view.mapToScene(pointMess);
+                let url = this.imageUrl;
+                let createPoint = new SGraphyImageItem(30, 30, url, this.id);
+                //移动新建的point
+                createPoint.moveTo(pointWall.x, pointWall.y);
+                let getParam = {
+                    PointId: this.id,
+                    ProjId: this.param.ProjId,
+                    UserId: this.param.UserId
+                };
+                this.changePoint(getParam, pointWall, 1, createPoint);
+                this.view.canvasView.style.cursor = "auto";
+                this.view.canvasView.removeEventListener("click", this.getPoint);
+            },
+            //右键菜单
+            contextMenu(e) {
+                //取消默认的浏览器自带的右键
+                e.preventDefault();
+                //将canvas的坐标转换成数据坐标
+                let point = this.view.mapToScene(this.getMouseCanvas(e));
+                //设立falg判断是否在标签上
+                let falg = false,
+                    index = 0,
+                    wallIndex = 0,
+                    wallFalg = false;
+                let items = this.view.scene.root.children;
+                for (let i = 0; i < items.length; i++) {
+                    if (items[i].type == 1) {
+                        if (items[i].contains(point.x, point.y)) {
+                            index = i;
+                            falg = true;
+                        }
+                    }
+                    // if (items[i].type == 4) {
+                    //   if (items[i].contains(point.x, point.y)) {
+                    //     wallIndex = i;
+                    //     wallFalg = true;
+                    //   }
+                    // }
+                }
+                //如果在标签上
+                if (falg || wallFalg) {
+                    this.menuShow = true;
+                    let el = this.$refs.graphyMain;
+                    if (falg) {
+                        this.detaleItem = items[index];
+                        this.pointShow = true;
+                    } else if (wallFalg) {
+                        this.detaleLine = items[wallIndex];
+                        this.lineShow = true;
+                    }
+                    if (el.offsetWidth < e.layerX + 200) {
+                        this.$refs.menu.style.left = e.layerX - 200 + "px";
+                        this.$refs.menu.style.top = e.layerY + "px";
+                    } else if (el.offsetHeight < e.layerY + 150) {
+                        this.$refs.menu.style.left = e.layerX + "px";
+                        this.$refs.menu.style.top = e.layerY - 100 + "px";
+                    } else {
+                        this.$refs.menu.style.left = e.layerX + "px";
+                        this.$refs.menu.style.top = e.layerY + "px";
+                    }
+                    // this.mainScene.removeItem(items[index]);
+                } else {
+                    this.lineShow = this.pointShow = false;
+                    this.menuShow = false;
+                }
+            },
+            //鼠标抬起事件,数据发生改变
+            dataChange(e) {
+                let item = this.mouseInElement(this.view, e);
+                let childRen = this.view.scene.root.children;
+                myData = [];
+                for (let i in childRen) {
+                    if (childRen[i].type == 1) {
+                        myData.push({
+                            Id: childRen[i].id,
+                            name: childRen[i].name,
+                            PointList: {
+                                X: childRen[i]._pos.x,
+                                Y: childRen[i]._pos.y
+                            }
+                        });
+                    }
+                }
+                myData.map(item => {
+                    for (let j = 0; j < this.list.length; j++) {
+                        if (item.Id == this.list[j].id && (item.PointList.X != this.list[j].X || item.PointList.Y * -1 != this.list[j].Y)) {
+                            this.list[j].X = item.PointList.X
+                            this.list[j].Y = item.PointList.Y
+                            let param = {
+                                PointId: item.Id,
+                                ProjId: this.param.ProjId,
+                                UserId: this.param.UserId
+                            };
+                            this.changePoint(param, {
+                                x: item.PointList.X,
+                                y: item.PointList.Y
+                            }, 3);
+                        }
+                    }
+                })
+            },
+            /**
+             *
+             * @param {*} view graphy class
+             * @param {*} e    mouse元素e
+             */
+            mouseInElement(view, e) {
+                let mouse = this.getMouseCanvas(e),
+                    falg = false,
+                    items = view.scene.root.children,
+                    i = 0;
+                for (; i < items.length; i++) {
+                    if (items[i].type == 1) {
+                        if (items[i].contains(mouse)) {
+                            falg = true;
+                            break;
+                        }
+                    }
+                }
+                return {
+                    falg,
+                    item: items[i] || [],
+                    index: i
+                };
+            },
+            //调整到合适比例
+            suitableSize() {
+                //获取中心点
+                let rect = this.view.scene.worldRect();
+                //计算缩放比例
+                this.view.scale = Math.min(
+                    this.view.width / (rect.width * 1.2),
+                    this.view.height / (rect.height * 1.2)
+                );
+                // 移动画布
+                this.view.pos.x =
+                    (-(rect.right + rect.left) / 2) * this.view.scale + this.view.width / 2;
+                this.view.pos.y =
+                    (-(rect.bottom + rect.top) / 2) * this.view.scale +
+                    this.view.height / 2;
+            },
+            //调整到小比例
+            smallSize() {
+                //获取中心点
+                let rect = this.view.scene.worldRect();
+                //计算缩放比例
+                this.view.scale = this.view.scale * 0.9;
+                // 移动画布
+                this.view.pos.x =
+                    (-(rect.right + rect.left) / 2) * this.view.scale + this.view.width / 2;
+                this.view.pos.y =
+                    (-(rect.bottom + rect.top) / 2) * this.view.scale +
+                    this.view.height / 2;
+            },
+            bigSize() {
+                //获取中心点
+                let rect = this.view.scene.worldRect();
+                //计算缩放比例
+                this.view.scale = this.view.scale * 1.1;
+                // 移动画布
+                this.view.pos.x =
+                    (-(rect.right + rect.left) / 2) * this.view.scale + this.view.width / 2;
+                this.view.pos.y =
+                    (-(rect.bottom + rect.top) / 2) * this.view.scale +
+                    this.view.height / 2;
+            }
+        },
+        watch: {
+            projectId(){
+                this.type = 1
+                this.resize()
+            }
+        }
+    };
+</script>
+
+<!-- Add "scoped" attribute to limit CSS to this component only -->
+<style lang="less" scoped>
+    .canvasGraphy {
+        position: relative;
+        height: 100%;
+        .saga-message {
+            height: 400px;
+            line-height: 400px;
+            color: #ccc;
+            font-size: 24px;
+            text-align: center;
+        }
+        #menu {
+            width: 200px;
+            z-index: 88;
+            overflow: hidden;
+            box-shadow: 0 1px 1px #888, 1px 0 1px #ccc;
+            position: absolute;
+            background-color: #fff;
+        }
+        #menu p {
+            width: 100%;
+            padding-left: 5px;
+            overflow: hidden;
+            height: 35px;
+            line-height: 35px;
+            font-size: 14px;
+            margin: 0;
+            text-align: left;
+            cursor: pointer;
+        }
+        #menu p:hover {
+            background-color: aqua;
+        }
+    }
+</style>