| | |
| | | this.datas = [] // 原始数据 |
| | | // this.lnglats = [] //3d地图当前展示坐标点数组 |
| | | this.factorName |
| | | this.factorId |
| | | this.heights = [] //3d地图当前展示坐标点对应的高度数组 |
| | | this.colors = [] // 3d地图当前展示坐标点对应的颜色数组 |
| | | this.bottomColor//最小值对应的图例色 |
| | |
| | | this.originMax = options.originMax |
| | | |
| | | this.factorName = options.factorName |
| | | this.factorId = options.factorId |
| | | this.colors = options.colors |
| | | this.bottomColor = options.bottomColor |
| | | this.standardMin = options.standardMin |
| | |
| | | pushData: function(data, drawMode) { |
| | | if (this.factorName == undefined) { |
| | | this.factorName = data.factorName |
| | | this.factorId = data.factorId |
| | | } else { |
| | | if (this.factorName != data.factorName) { |
| | | console.log("错误: Factor中插入的数据前后名称不一致,原因子:" + this.factorName + ",新因子:" + data.factorName); |