* @private * @function WebMap.prototype.addSpecToMap * @description 将坐标系为0和-1000的图层添加到地图上 * @param {Object} mapInfo - 地图信息
(source)
| 665 | * @param {Object} mapInfo - 地图信息 |
| 666 | */ |
| 667 | addSpecToMap(source) { |
| 668 | let layer = new olLayer.Tile({ |
| 669 | source: source, |
| 670 | zIndex: 0 |
| 671 | }); |
| 672 | this.map.addLayer(layer); |
| 673 | this.sendMapToUser(0); |
| 674 | } |
| 675 | /** |
| 676 | * @private |
| 677 | * @function WebMap.prototype.getWMTSScales |
no test coverage detected