|
@@ -31,26 +31,26 @@ export default {
|
|
|
default: () => {
|
|
|
return {
|
|
|
default: {
|
|
|
- stroke: "#F0F3F7",
|
|
|
- fill: "#F0F3F7",
|
|
|
+ strokeColor: "#F0F3F7",
|
|
|
+ fillColor: "#F0F3F7",
|
|
|
lineWidth: 1,
|
|
|
effect: {},
|
|
|
},
|
|
|
selected: {
|
|
|
- stroke: "#000000",
|
|
|
- fill: "#e1f3fe",
|
|
|
+ strokeColor: "#000000",
|
|
|
+ fillColor: "#ff0000",
|
|
|
lineWidth: 100,
|
|
|
effect: {},
|
|
|
},
|
|
|
disabled: {
|
|
|
- stroke: "#2b2b2b",
|
|
|
- fill: "#afafaf",
|
|
|
+ strokeColor: "#2b2b2b",
|
|
|
+ fillColor: "#afafaf",
|
|
|
lineWidth: 1,
|
|
|
effect: {},
|
|
|
},
|
|
|
highlight: {
|
|
|
- stroke: "#2b2b2b",
|
|
|
- fill: "#fbb029",
|
|
|
+ strokeColor: "#2b2b2b",
|
|
|
+ fillColor: "#fbb029",
|
|
|
lineWidth: 1,
|
|
|
effect: {},
|
|
|
},
|
|
@@ -164,7 +164,7 @@ export default {
|
|
|
//是否显示空间
|
|
|
// t.visible = this.isSpaceSelectable;
|
|
|
//设置样式
|
|
|
- t = { ...this.baseMapStyle.selected };
|
|
|
+ Object.assign(t, this.baseMapStyle.default)
|
|
|
//是否展示名称
|
|
|
// t.showBaseName = this.showBaseName;
|
|
|
// 是否可选
|
|
@@ -175,35 +175,35 @@ export default {
|
|
|
this.scene.addItem(t);
|
|
|
});
|
|
|
parser.wallList.forEach((t) => {
|
|
|
- //是否显示
|
|
|
+ // 是否显示
|
|
|
// t.visible = this.isShowWall;
|
|
|
// 是否可选
|
|
|
// t.selectable = true;
|
|
|
this.scene.addItem(t);
|
|
|
});
|
|
|
parser.virtualWallList.forEach((t) => {
|
|
|
- //是否显示
|
|
|
+ // 是否显示
|
|
|
// t.visible = this.isShowVirtualWall;
|
|
|
// 是否可选
|
|
|
// t.selectable = true;
|
|
|
this.scene.addItem(t);
|
|
|
});
|
|
|
parser.doorList.forEach((t) => {
|
|
|
- //是否显示
|
|
|
+ // 是否显示
|
|
|
// t.visible = this.isShowDoor;
|
|
|
// 是否可选
|
|
|
// t.selectable = true;
|
|
|
this.scene.addItem(t);
|
|
|
});
|
|
|
parser.columnList.forEach((t) => {
|
|
|
- //是否显示
|
|
|
+ // 是否显示
|
|
|
// t.visible = this.isShowColumn;
|
|
|
// 是否可选
|
|
|
// t.selectable = true;
|
|
|
this.scene.addItem(t);
|
|
|
});
|
|
|
parser.casementList.forEach((t) => {
|
|
|
- //是否显示
|
|
|
+ // 是否显示
|
|
|
// t.visible = this.isShowWindow;
|
|
|
// 是否可选
|
|
|
// t.selectable = true;
|