(options)
| 1109 | } |
| 1110 | |
| 1111 | _addLayerSucceeded(options) { |
| 1112 | if ( |
| 1113 | (((options || {}).layerInfo || {}).labelStyle || {}).labelField && |
| 1114 | options.layerInfo.layerType !== 'DATAFLOW_POINT_TRACK' |
| 1115 | ) { |
| 1116 | // 存在标签专题图 |
| 1117 | this._addLabelLayer(options.layerInfo, options.features, false); |
| 1118 | } |
| 1119 | this.layerAdded++; |
| 1120 | this._sendMapToUser(this.layerAdded, this.expectLayerLen); |
| 1121 | } |
| 1122 | |
| 1123 | _createDataflowLayer(layerInfo) { |
| 1124 | const dataflowService = new DataFlowService(layerInfo.wsUrl).initSubscribe(); |
no test coverage detected