浏览代码

3dModeling MainPanel.js 朱涛 commit at 2021-04-16

朱涛 4 年之前
父节点
当前提交
d389b222bd
共有 1 个文件被更改,包括 55 次插入0 次删除
  1. 55 0
      3dModeling/tjby18/MainPanel.js

+ 55 - 0
3dModeling/tjby18/MainPanel.js

@@ -43,3 +43,58 @@ class MainPanel {
                 flash(devicList);
                 this.goinBuild(boolValue);
                 //    updateData();
+            }
+            else {
+                reset(devicList);
+            }
+        }
+        else if (key == "expandBuilding") { // 楼层横向展开
+            this.app.level.change(app.buildings[0]); // 进入建筑
+            if (boolValue) {
+                this.building.expandFloors({
+                    'time': 1000,
+                    'length': 4,
+                    'horzMode': false,
+                    'hideRoof': true,
+                    'complete': function () {
+
+                        that.isExpandBuilding = true;
+                    }
+                })
+            } else {
+                this.building.unexpandFloors({
+                    'time': 500,
+                    'complete': function () { that.isExpandBuilding = false; }
+                })
+            }
+        }
+    }
+    // 展开的楼层收回去
+    resetExpand() {
+        var that = this;
+        if (this.isExpandBuilding) {
+            this.toolBar.data.expandBuilding = false;
+            this.building.unexpandFloors({
+                'time': 500,
+                'complete': function () { that.isExpandBuilding = false; }
+            })
+        }
+    }
+    goinBuild(boolValue) {
+        delMydiv();
+        this.resetExpand();
+        var name = boolValue ? '返回室外' : '进入建筑';
+        this.toolImgs.img3.name(name);
+        if (boolValue) {
+            removeMark();
+            this.app.level.change(app.buildings[0]);
+            var domDiv = document.getElementById('bottomBackground');
+            if (domDiv) {
+                domDiv.remove();
+            }
+        }
+        else {
+            this.app.level.change(app.root.campuses[0]);
+        }
+    }
+}