|
@@ -47,9 +47,8 @@ import {
|
|
|
import { mapGetters, mapActions } from "vuex";
|
|
|
import { SPoint } from '@sybotan-web/base/lib';
|
|
|
let colorArr = [
|
|
|
- "#F9C3C3", "#FFD1BF", "#FFF3BF", "#D8F7C6",
|
|
|
- "#C6F2F6", "#DCE3C0", "#FAE6C9", "#E3D7F7",
|
|
|
- "#C4CBF8", "#DEC3F6"
|
|
|
+ '#00f5ff0d', '#ffdab90d', '#8470ff0d', '#7fff000d', '#ee5c420d',
|
|
|
+ '#ffffe00d', '#eee9e90d', '#9c9c9c0d', '#90ee900d', '#b4cdcd0d'
|
|
|
];
|
|
|
export default {
|
|
|
props: {
|
|
@@ -78,7 +77,8 @@ export default {
|
|
|
data: {},
|
|
|
list: "",
|
|
|
buildMess: {},
|
|
|
- imageUrl: "/image-service/common/image_get?systemId=dev&key=graphy.png"
|
|
|
+ imageUrl: "/image-service/common/image_get?systemId=dev&key=graphy.png",
|
|
|
+ setFlag: false, //插旗标志
|
|
|
};
|
|
|
},
|
|
|
computed: {
|
|
@@ -275,80 +275,20 @@ export default {
|
|
|
},
|
|
|
//画点位坐标
|
|
|
doPoint(list) {
|
|
|
- this.list = list;
|
|
|
+ this.list = list.map(t => {
|
|
|
+ if (t.X == 0 && t.Y == 0) {
|
|
|
+ return undefined;
|
|
|
+ } else {
|
|
|
+ return {
|
|
|
+ id: t.Id,
|
|
|
+ X: t.X,
|
|
|
+ Y: t.Y * -1,
|
|
|
+ Name: t.Name
|
|
|
+ };
|
|
|
+ }
|
|
|
+ }).filter(item => item);
|
|
|
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;
|
|
@@ -422,13 +362,15 @@ export default {
|
|
|
initGraphy(data) {
|
|
|
this.resetSize();
|
|
|
this.$nextTick(() => {
|
|
|
+ data.images = this.list;
|
|
|
this.mainScene = new mainScene(data);
|
|
|
this.view.scene = this.mainScene;
|
|
|
this.view.fitSceneToView();
|
|
|
- this.mainScene.click(this, this.checkSpace)
|
|
|
+ this.mainScene.click(this, this.setNewFlag)
|
|
|
let items = this.mainScene.root.children;
|
|
|
- items.map(t => {
|
|
|
+ items.map((t, i) => {
|
|
|
this.drawText(t)
|
|
|
+ this.applyColor(t, i)
|
|
|
})
|
|
|
})
|
|
|
},
|
|
@@ -461,18 +403,26 @@ export default {
|
|
|
item.viewText = "⬇️ " + item.initName;
|
|
|
}
|
|
|
},
|
|
|
+ //分配随机颜色
|
|
|
+ applyColor(t, i) {
|
|
|
+ if (t.isBusiness == 2) {
|
|
|
+ t.fillColor = new SColor(colorArr[i % 10]);
|
|
|
+ }
|
|
|
+ },
|
|
|
// 定位
|
|
|
locationGraphy(point) {
|
|
|
- // 65886.9,101198
|
|
|
- // this.view.origin = new SPoint((this.view.width / 2) - (65886.9 * this.view.scale),(this.view.height / 2) - (101198 * this.view.scale))
|
|
|
+ let centerX = (this.view.width / 2) - point.X * this.view.scale;
|
|
|
+ let centerY = (this.view.height / 2) - point.Y * this.view.scale;
|
|
|
+ this.view.origin = new SPoint(centerX, centerY)
|
|
|
},
|
|
|
//点击按钮
|
|
|
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);
|
|
|
+ // 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);
|
|
|
+ this.setFlag = true
|
|
|
},
|
|
|
//获取鼠标相对canvas的位置
|
|
|
getMouseCanvas(e) {
|
|
@@ -637,11 +587,6 @@ export default {
|
|
|
}
|
|
|
})
|
|
|
},
|
|
|
- /**
|
|
|
- *
|
|
|
- * @param {*} view graphy class
|
|
|
- * @param {*} e mouse元素e
|
|
|
- */
|
|
|
mouseInElement(view, e) {
|
|
|
let mouse = this.getMouseCanvas(e),
|
|
|
falg = false,
|
|
@@ -675,6 +620,13 @@ export default {
|
|
|
let centerX = this.view.width / 2
|
|
|
let centerY = this.view.height / 2
|
|
|
this.view.scaleByPoint(1.1, centerX, centerY)
|
|
|
+ },
|
|
|
+ //插旗 item - 点击的空间item
|
|
|
+ setNewFlag(item) {
|
|
|
+ if (this.setFlag) {
|
|
|
+
|
|
|
+ }
|
|
|
+ this.setFlag = false
|
|
|
}
|
|
|
},
|
|
|
watch: {
|