Browse Source

修改界面

zhibin 6 năm trước cách đây
mục cha
commit
5427514120
3 tập tin đã thay đổi với 2 bổ sung2 xóa
  1. 1 1
      css/wanaplan.min.css
  2. 0 1
      libs/Controls/Pan.js
  3. 1 0
      libs/Renderer/Canvas.js

+ 1 - 1
css/wanaplan.min.css

@@ -5502,7 +5502,7 @@ input::-webkit-inner-spin-button,input::-webkit-outer-spin-button{
 
 .photonui-wnpfloorcontrollerbutton {
     width: 120px;
-    height: 17px;
+    /* height: 17px; */
     cursor: pointer;
     border-radius: 5px;
     border: 1px solid #aaa;

+ 0 - 1
libs/Controls/Pan.js

@@ -296,7 +296,6 @@ Pan.prototype.pan = function () {
 				//当前点是否在墙上
 				this.currentState.selectWallSet = this.calculateElement.wallsContain(args.point);
 
-				console.log(this.currentState.selectWallSet)
 				this.currentState.selectWallSet ?
 					strategy.__selectWallSet(args) : 
 					strategy.__selectNotWallSet(args)

+ 1 - 0
libs/Renderer/Canvas.js

@@ -286,6 +286,7 @@ Canvas.prototype.draw = function (geometry, style, contextIndex, floorstyle) {
 		"LineMeasure": 'drawLineWithMeasure'
 	}
 
+	console.log(geometry.geoType)
 	this[strategy[geometry.geoType]](geometry, style, contextIndex)
 	//{todo} 我们在这里判断各种矢量要素的绘制。        
 };