@antv/l7-layers 2.9.36 → 2.9.37-alpha.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/es/Geometry/index.d.ts +0 -9
- package/es/Geometry/index.js +0 -13
- package/es/Geometry/models/billboard.d.ts +0 -9
- package/es/Geometry/models/billboard.js +0 -13
- package/es/Geometry/models/plane.d.ts +0 -9
- package/es/Geometry/models/plane.js +0 -13
- package/es/Geometry/models/sprite.d.ts +0 -9
- package/es/Geometry/models/sprite.js +0 -13
- package/es/canvas/index.d.ts +0 -9
- package/es/canvas/index.js +0 -13
- package/es/citybuliding/building.d.ts +0 -9
- package/es/citybuliding/building.js +0 -13
- package/es/core/BaseLayer.d.ts +2 -2
- package/es/core/BaseLayer.js +22 -13
- package/es/core/BaseModel.js +1 -0
- package/es/core/triangulation.d.ts +2 -0
- package/es/core/triangulation.js +2 -3
- package/es/glsl.d.ts +5 -0
- package/es/heatmap/index.d.ts +0 -9
- package/es/heatmap/index.js +0 -13
- package/es/heatmap/models/heatmap.js +1 -3
- package/es/image/index.d.ts +0 -9
- package/es/image/index.js +0 -13
- package/es/image/models/dataImage.d.ts +0 -9
- package/es/image/models/dataImage.js +1 -15
- package/es/image/models/image.d.ts +0 -9
- package/es/image/models/image.js +1 -15
- package/es/image/models/tileDataImage.d.ts +0 -9
- package/es/image/models/tileDataImage.js +1 -15
- package/es/index.d.ts +1 -1
- package/es/index.js +1 -1
- package/es/line/index.d.ts +0 -9
- package/es/line/index.js +0 -13
- package/es/line/models/great_circle.js +3 -3
- package/es/mask/index.d.ts +0 -9
- package/es/mask/index.js +0 -13
- package/es/plugins/DataMappingPlugin.js +2 -2
- package/es/plugins/DataSourcePlugin.js +1 -1
- package/es/plugins/FeatureScalePlugin.js +5 -3
- package/es/plugins/LayerModelPlugin.js +1 -1
- package/es/plugins/LightingPlugin.js +1 -1
- package/es/plugins/RegisterStyleAttributePlugin.js +8 -13
- package/es/plugins/UpdateStyleAttributePlugin.js +1 -1
- package/es/point/index.d.ts +0 -9
- package/es/point/index.js +0 -13
- package/es/point/models/earthFill.js +2 -2
- package/es/point/models/image.js +1 -1
- package/es/polygon/index.d.ts +0 -9
- package/es/polygon/index.js +0 -13
- package/es/polygon/models/ocean.js +1 -2
- package/es/polygon/models/water.js +1 -2
- package/es/raster/index.d.ts +0 -9
- package/es/raster/index.js +0 -13
- package/es/raster/models/raster.js +1 -2
- package/es/raster/models/rasterRgb.js +1 -2
- package/es/raster/models/rasterTile.js +1 -2
- package/es/raster/raster.d.ts +0 -9
- package/es/raster/raster.js +0 -13
- package/es/tile/interaction/TilePickService.d.ts +16 -0
- package/es/tile/{manager/tilePickerManager.js → interaction/TilePickService.js} +19 -84
- package/es/tile/interaction/getFeatureData.d.ts +0 -0
- package/es/tile/interaction/getFeatureData.js +0 -0
- package/es/tile/interaction/getRasterData.d.ts +4 -0
- package/es/tile/interaction/getRasterData.js +70 -0
- package/es/tile/interaction/utils.d.ts +11 -0
- package/es/tile/interaction/utils.js +97 -0
- package/es/tile/interface.d.ts +1 -2
- package/es/tile/manager/{baseTileManager.d.ts → base.d.ts} +8 -5
- package/es/tile/manager/{baseTileManager.js → base.js} +53 -14
- package/es/tile/manager/layerManager.d.ts +19 -0
- package/es/tile/manager/{tileLayerManager.js → layerManager.js} +75 -76
- package/es/tile/manager/{baseMapTileLayerManager.d.ts → mapLayerManager.d.ts} +2 -2
- package/es/tile/manager/{baseMapTileLayerManager.js → mapLayerManager.js} +4 -4
- package/es/tile/models/tileModel.js +4 -4
- package/es/tile/render/TileRenderService.d.ts +10 -0
- package/es/tile/render/TileRenderService.js +68 -0
- package/es/tile/{manager/tileConfigManager.d.ts → style/TileStyleService.d.ts} +2 -2
- package/es/tile/{manager/tileConfigManager.js → style/TileStyleService.js} +8 -11
- package/es/tile/style/constants.d.ts +13 -0
- package/es/tile/style/constants.js +17 -0
- package/es/tile/style/utils.d.ts +9 -0
- package/es/tile/style/utils.js +139 -0
- package/es/tile/tileFactory/base.d.ts +8 -7
- package/es/tile/tileFactory/base.js +116 -187
- package/es/tile/tileFactory/layers/rasterDataLayer.d.ts +11 -0
- package/es/tile/tileFactory/{rasterDataLayer.js → layers/rasterDataLayer.js} +3 -16
- package/es/tile/{tileTest.d.ts → tileFactory/layers/tileTest.d.ts} +2 -2
- package/es/tile/{tileTest.js → tileFactory/layers/tileTest.js} +2 -2
- package/es/tile/tileFactory/{vectorLayer.d.ts → layers/vectorLayer.d.ts} +9 -17
- package/es/tile/tileFactory/{vectorLayer.js → layers/vectorLayer.js} +9 -20
- package/es/tile/tileFactory/line.js +0 -3
- package/es/tile/tileFactory/mask.js +0 -3
- package/es/tile/tileFactory/point.js +0 -3
- package/es/tile/tileFactory/polygon.js +0 -3
- package/es/tile/tileFactory/raster.js +0 -3
- package/es/tile/tileFactory/rasterData.js +2 -7
- package/es/tile/tileFactory/test.js +1 -12
- package/es/tile/tileLayer/MapTileLayer.d.ts +6 -0
- package/es/tile/tileLayer/MapTileLayer.js +48 -0
- package/es/tile/tileLayer/TileLayer.d.ts +22 -0
- package/es/tile/tileLayer/TileLayer.js +198 -0
- package/es/tile/tileLayer/{baseMapTileLayer.d.ts → base.d.ts} +19 -16
- package/es/tile/tileLayer/{baseMapTileLayer.js → base.js} +118 -101
- package/es/tile/utils.d.ts +7 -4
- package/es/tile/utils.js +14 -74
- package/es/utils/dataMappingStyle.js +0 -3
- package/es/utils/extrude_polyline.d.ts +1 -0
- package/es/utils/extrude_polyline.js +5 -3
- package/es/utils/multiPassRender.js +0 -1
- package/es/wind/index.d.ts +0 -9
- package/es/wind/index.js +0 -13
- package/es/wind/models/wind.d.ts +0 -9
- package/es/wind/models/wind.js +1 -15
- package/lib/Geometry/index.js +0 -13
- package/lib/Geometry/models/billboard.js +0 -13
- package/lib/Geometry/models/plane.js +0 -13
- package/lib/Geometry/models/sprite.js +0 -13
- package/lib/canvas/index.js +0 -13
- package/lib/citybuliding/building.js +0 -13
- package/lib/core/BaseLayer.js +22 -13
- package/lib/core/BaseModel.js +1 -0
- package/lib/core/triangulation.js +2 -1
- package/lib/glsl.d.ts +5 -0
- package/lib/heatmap/index.js +0 -13
- package/lib/heatmap/models/heatmap.js +1 -3
- package/lib/image/index.js +0 -13
- package/lib/image/models/dataImage.js +1 -15
- package/lib/image/models/image.js +1 -15
- package/lib/image/models/tileDataImage.js +1 -15
- package/lib/index.js +1 -1
- package/lib/line/index.js +0 -13
- package/lib/line/models/great_circle.js +3 -3
- package/lib/mask/index.js +0 -13
- package/lib/plugins/DataMappingPlugin.js +2 -2
- package/lib/plugins/DataSourcePlugin.js +1 -1
- package/lib/plugins/FeatureScalePlugin.js +5 -3
- package/lib/plugins/LayerModelPlugin.js +1 -1
- package/lib/plugins/LightingPlugin.js +1 -1
- package/lib/plugins/RegisterStyleAttributePlugin.js +9 -13
- package/lib/plugins/UpdateStyleAttributePlugin.js +1 -1
- package/lib/point/index.js +0 -13
- package/lib/point/models/earthFill.js +2 -2
- package/lib/point/models/image.js +1 -1
- package/lib/polygon/index.js +0 -13
- package/lib/polygon/models/ocean.js +1 -2
- package/lib/polygon/models/water.js +1 -2
- package/lib/raster/index.js +0 -13
- package/lib/raster/models/raster.js +1 -2
- package/lib/raster/models/rasterRgb.js +1 -2
- package/lib/raster/models/rasterTile.js +1 -2
- package/lib/raster/raster.js +0 -13
- package/lib/tile/{manager/tilePickerManager.js → interaction/TilePickService.js} +20 -82
- package/lib/tile/interaction/getFeatureData.js +1 -0
- package/lib/tile/interaction/getRasterData.js +83 -0
- package/lib/tile/interaction/utils.js +120 -0
- package/lib/tile/manager/{baseTileManager.js → base.js} +56 -16
- package/lib/tile/manager/{tileLayerManager.js → layerManager.js} +77 -75
- package/lib/tile/manager/{baseMapTileLayerManager.js → mapLayerManager.js} +4 -4
- package/lib/tile/models/tileModel.js +4 -4
- package/lib/tile/render/TileRenderService.js +78 -0
- package/lib/tile/{manager/tileConfigManager.js → style/TileStyleService.js} +9 -9
- package/lib/tile/style/constants.js +26 -0
- package/lib/tile/style/utils.js +163 -0
- package/lib/tile/tileFactory/base.js +117 -187
- package/lib/tile/tileFactory/{rasterDataLayer.js → layers/rasterDataLayer.js} +3 -16
- package/lib/tile/{tileTest.js → tileFactory/layers/tileTest.js} +2 -2
- package/lib/tile/tileFactory/{vectorLayer.js → layers/vectorLayer.js} +8 -20
- package/lib/tile/tileFactory/line.js +0 -3
- package/lib/tile/tileFactory/mask.js +0 -3
- package/lib/tile/tileFactory/point.js +0 -3
- package/lib/tile/tileFactory/polygon.js +0 -3
- package/lib/tile/tileFactory/raster.js +0 -3
- package/lib/tile/tileFactory/rasterData.js +2 -8
- package/lib/tile/tileFactory/test.js +1 -13
- package/lib/tile/tileLayer/MapTileLayer.js +63 -0
- package/lib/tile/tileLayer/TileLayer.js +215 -0
- package/lib/tile/tileLayer/{baseMapTileLayer.js → base.js} +119 -96
- package/lib/tile/utils.js +19 -86
- package/lib/utils/dataMappingStyle.js +0 -3
- package/lib/utils/extrude_polyline.js +5 -2
- package/lib/utils/multiPassRender.js +0 -1
- package/lib/wind/index.js +0 -13
- package/lib/wind/models/wind.js +1 -15
- package/package.json +6 -6
- package/es/tile/manager/tileLayerManager.d.ts +0 -15
- package/es/tile/manager/tilePickerManager.d.ts +0 -21
- package/es/tile/tileFactory/rasterDataLayer.d.ts +0 -20
- package/es/tile/tileLayer/baseTileLayer.d.ts +0 -48
- package/es/tile/tileLayer/baseTileLayer.js +0 -420
- package/es/tile/tmsMapTileLayer.d.ts +0 -7
- package/es/tile/tmsMapTileLayer.js +0 -97
- package/es/tile/tmsTileLayer.d.ts +0 -7
- package/es/tile/tmsTileLayer.js +0 -101
- package/lib/tile/tileLayer/baseTileLayer.js +0 -429
- package/lib/tile/tmsMapTileLayer.js +0 -114
- package/lib/tile/tmsTileLayer.js +0 -118
package/es/tile/utils.js
CHANGED
|
@@ -1,8 +1,17 @@
|
|
|
1
|
-
import _defineProperty from "@babel/runtime/helpers/defineProperty";
|
|
2
|
-
import _slicedToArray from "@babel/runtime/helpers/slicedToArray";
|
|
3
1
|
import { createLayerContainer } from '@antv/l7-core';
|
|
4
2
|
import { DOM } from '@antv/l7-utils';
|
|
3
|
+
import { updateLayersConfig } from "./style/utils";
|
|
5
4
|
export var tileVectorParser = ['mvt', 'geojsonvt', 'testTile'];
|
|
5
|
+
/**
|
|
6
|
+
* 判断当前图层是否是瓦片图层
|
|
7
|
+
* @param layer
|
|
8
|
+
* @returns
|
|
9
|
+
*/
|
|
10
|
+
|
|
11
|
+
export function isTileGroup(layer) {
|
|
12
|
+
var source = layer.getSource();
|
|
13
|
+
return tileVectorParser.includes(source.parser.type);
|
|
14
|
+
}
|
|
6
15
|
export function isVectorTile(parserType) {
|
|
7
16
|
return tileVectorParser.indexOf(parserType) >= 0;
|
|
8
17
|
}
|
|
@@ -73,71 +82,14 @@ export function getContainerSize(container) {
|
|
|
73
82
|
return container.getBoundingClientRect();
|
|
74
83
|
}
|
|
75
84
|
}
|
|
76
|
-
export function readRasterValue(tile, mapService, x, y) {
|
|
77
|
-
var _tile$bboxPolygon, _tile$data, _tile$data2, _tile$data3;
|
|
78
|
-
|
|
79
|
-
var bbox = (tile === null || tile === void 0 ? void 0 : (_tile$bboxPolygon = tile.bboxPolygon) === null || _tile$bboxPolygon === void 0 ? void 0 : _tile$bboxPolygon.bbox) || [0, 0, 10, -10];
|
|
80
|
-
|
|
81
|
-
var _bbox = _slicedToArray(bbox, 4),
|
|
82
|
-
_bbox$ = _bbox[0],
|
|
83
|
-
minLng = _bbox$ === void 0 ? 0 : _bbox$,
|
|
84
|
-
_bbox$2 = _bbox[1],
|
|
85
|
-
minLat = _bbox$2 === void 0 ? 0 : _bbox$2,
|
|
86
|
-
_bbox$3 = _bbox[2],
|
|
87
|
-
maxLng = _bbox$3 === void 0 ? 10 : _bbox$3,
|
|
88
|
-
_bbox$4 = _bbox[3],
|
|
89
|
-
maxLat = _bbox$4 === void 0 ? -10 : _bbox$4;
|
|
90
|
-
|
|
91
|
-
var tileXY = mapService.lngLatToContainer([minLng, minLat]);
|
|
92
|
-
var tileMaxXY = mapService.lngLatToContainer([maxLng, maxLat]);
|
|
93
|
-
var tilePixelWidth = tileMaxXY.x - tileXY.x;
|
|
94
|
-
var tilePixelHeight = tileXY.y - tileMaxXY.y;
|
|
95
|
-
var pos = [(x - tileXY.x) / tilePixelWidth, // x
|
|
96
|
-
(y - tileMaxXY.y) / tilePixelHeight // y
|
|
97
|
-
];
|
|
98
|
-
var tileWidth = (tile === null || tile === void 0 ? void 0 : (_tile$data = tile.data) === null || _tile$data === void 0 ? void 0 : _tile$data.width) || 1;
|
|
99
|
-
var tileHeight = (tile === null || tile === void 0 ? void 0 : (_tile$data2 = tile.data) === null || _tile$data2 === void 0 ? void 0 : _tile$data2.height) || 1;
|
|
100
|
-
var indexX = Math.floor(pos[0] * tileWidth);
|
|
101
|
-
var indexY = Math.floor(pos[1] * tileHeight);
|
|
102
|
-
var index = Math.max(0, indexY - 1) * tileWidth + indexX;
|
|
103
|
-
var data = tile === null || tile === void 0 ? void 0 : (_tile$data3 = tile.data) === null || _tile$data3 === void 0 ? void 0 : _tile$data3.data[index];
|
|
104
|
-
return data;
|
|
105
|
-
}
|
|
106
|
-
export function readPixel(x, y, rendererService) {
|
|
107
|
-
var readPixels = rendererService.readPixels,
|
|
108
|
-
getContainer = rendererService.getContainer;
|
|
109
|
-
var xInDevicePixel = x * DOM.DPR;
|
|
110
|
-
var yInDevicePixel = y * DOM.DPR;
|
|
111
|
-
|
|
112
|
-
var _getContainerSize = getContainerSize(getContainer()),
|
|
113
|
-
width = _getContainerSize.width,
|
|
114
|
-
height = _getContainerSize.height;
|
|
115
|
-
|
|
116
|
-
width *= DOM.DPR;
|
|
117
|
-
height *= DOM.DPR;
|
|
118
|
-
|
|
119
|
-
if (xInDevicePixel > width - 1 * DOM.DPR || xInDevicePixel < 0 || yInDevicePixel > height - 1 * DOM.DPR || yInDevicePixel < 0) {
|
|
120
|
-
return false;
|
|
121
|
-
}
|
|
122
|
-
|
|
123
|
-
var pickedColors = readPixels({
|
|
124
|
-
x: Math.floor(xInDevicePixel),
|
|
125
|
-
// 视口坐标系原点在左上,而 WebGL 在左下,需要翻转 Y 轴
|
|
126
|
-
y: Math.floor(height - (y + 1) * DOM.DPR),
|
|
127
|
-
width: 1,
|
|
128
|
-
height: 1,
|
|
129
|
-
data: new Uint8Array(1 * 1 * 4)
|
|
130
|
-
});
|
|
131
|
-
return pickedColors;
|
|
132
|
-
}
|
|
133
85
|
export function isTileLoaded(tile) {
|
|
134
86
|
return tile.layerIDList.length === tile.loadedLayers;
|
|
135
87
|
}
|
|
136
88
|
export function isTileChildLoaded(tile) {
|
|
137
|
-
var
|
|
138
|
-
return
|
|
89
|
+
var children = tile.children;
|
|
90
|
+
return children.filter(function (child) {
|
|
139
91
|
return isTileLoaded(child);
|
|
140
|
-
}).length ===
|
|
92
|
+
}).length === children.length;
|
|
141
93
|
}
|
|
142
94
|
export function isTileParentLoaded(tile) {
|
|
143
95
|
var parent = tile.parent;
|
|
@@ -160,18 +112,6 @@ export function tileAllLoad(tile, callback) {
|
|
|
160
112
|
}
|
|
161
113
|
}, 36);
|
|
162
114
|
}
|
|
163
|
-
export function updateLayersConfig(layers, key, value) {
|
|
164
|
-
layers.map(function (layer) {
|
|
165
|
-
if (key === 'mask') {
|
|
166
|
-
// Tip: 栅格瓦片生效、设置全局的 mask、瓦片被全局的 mask 影响
|
|
167
|
-
layer.style({
|
|
168
|
-
mask: value
|
|
169
|
-
});
|
|
170
|
-
} else {
|
|
171
|
-
layer.updateLayerConfig(_defineProperty({}, key, value));
|
|
172
|
-
}
|
|
173
|
-
});
|
|
174
|
-
}
|
|
175
115
|
|
|
176
116
|
function dispatchTileVisibleChange(tile, callback) {
|
|
177
117
|
if (tile.isVisible) {
|
|
@@ -3,15 +3,12 @@ import { isFunction, isNumber, isString } from 'lodash';
|
|
|
3
3
|
* 该文件中的工具方法主要用于对 style 中的属性进行 数据映射
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
|
-
// 画布默认的宽度
|
|
7
|
-
var WIDTH = 1024;
|
|
8
6
|
/**
|
|
9
7
|
* 当 style 中使用的 opacity 不是常数的时候根据数据进行映射
|
|
10
8
|
* @param field
|
|
11
9
|
* @param values
|
|
12
10
|
* @param updateOptions
|
|
13
11
|
*/
|
|
14
|
-
|
|
15
12
|
function registerStyleAttribute(fieldName, layer, field, values, updateOptions) {
|
|
16
13
|
layer.updateStyleAttribute(fieldName, field, values, updateOptions);
|
|
17
14
|
}
|
|
@@ -2,6 +2,7 @@ import { vec2 } from 'gl-matrix';
|
|
|
2
2
|
export declare function computeMiter(lineTangent: vec2, miter: vec2, start: vec2, end: vec2, halfThick: number): [number, vec2];
|
|
3
3
|
export declare function computeNormal(out: vec2, dir: vec2): vec2;
|
|
4
4
|
export declare function direction(out: vec2, a: vec2, b: vec2): vec2;
|
|
5
|
+
export declare function getArrayUnique(matrix: number[][]): number[][];
|
|
5
6
|
export interface IExtrudeLineOption {
|
|
6
7
|
join: string;
|
|
7
8
|
cap: string;
|
|
@@ -5,7 +5,8 @@ import _createClass from "@babel/runtime/helpers/createClass";
|
|
|
5
5
|
import _defineProperty from "@babel/runtime/helpers/defineProperty";
|
|
6
6
|
import { aProjectFlat } from '@antv/l7-utils';
|
|
7
7
|
import { vec2 } from 'gl-matrix';
|
|
8
|
-
var tmp = vec2.create();
|
|
8
|
+
var tmp = vec2.create(); // eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
9
|
+
|
|
9
10
|
var capEnd = vec2.create();
|
|
10
11
|
var lineA = vec2.create();
|
|
11
12
|
var lineB = vec2.create();
|
|
@@ -30,7 +31,7 @@ function isPointEqual(a, b) {
|
|
|
30
31
|
return a[0] === b[0] && a[1] === b[1];
|
|
31
32
|
}
|
|
32
33
|
|
|
33
|
-
function getArrayUnique(matrix) {
|
|
34
|
+
export function getArrayUnique(matrix) {
|
|
34
35
|
var map = new Map();
|
|
35
36
|
|
|
36
37
|
for (var i = 0; i < matrix.length; i++) {
|
|
@@ -311,7 +312,8 @@ var ExtrudePolyline = /*#__PURE__*/function () {
|
|
|
311
312
|
}
|
|
312
313
|
}, {
|
|
313
314
|
key: "segment_gaode2",
|
|
314
|
-
value: function segment_gaode2(complex, index, last, cur, next, originLast, originCur,
|
|
315
|
+
value: function segment_gaode2(complex, index, last, cur, next, originLast, originCur, // eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
316
|
+
originNext) {
|
|
315
317
|
var count = 0;
|
|
316
318
|
var indices = complex.indices;
|
|
317
319
|
var positions = complex.positions;
|
|
@@ -21,7 +21,6 @@ export function createMultiPassRenderer(layer, passes, postProcessingPassFactory
|
|
|
21
21
|
var multiPassRenderer = layer.multiPassRenderer;
|
|
22
22
|
|
|
23
23
|
var _layer$getLayerConfig = layer.getLayerConfig(),
|
|
24
|
-
enablePicking = _layer$getLayerConfig.enablePicking,
|
|
25
24
|
enableTAA = _layer$getLayerConfig.enableTAA; // picking pass if enabled
|
|
26
25
|
// if (enablePicking) {
|
|
27
26
|
// multiPassRenderer.add(normalPassFactory('pixelPicking'));
|
package/es/wind/index.d.ts
CHANGED
|
@@ -6,15 +6,6 @@ export default class WindLayer extends BaseLayer<IWindLayerStyleOptions> {
|
|
|
6
6
|
buildModels(): void;
|
|
7
7
|
rebuildModels(): void;
|
|
8
8
|
renderModels(): this;
|
|
9
|
-
protected getConfigSchema(): {
|
|
10
|
-
properties: {
|
|
11
|
-
opacity: {
|
|
12
|
-
type: string;
|
|
13
|
-
minimum: number;
|
|
14
|
-
maximum: number;
|
|
15
|
-
};
|
|
16
|
-
};
|
|
17
|
-
};
|
|
18
9
|
protected getDefaultConfig(): {};
|
|
19
10
|
protected getModelType(): WindModelType;
|
|
20
11
|
}
|
package/es/wind/index.js
CHANGED
|
@@ -63,19 +63,6 @@ var WindLayer = /*#__PURE__*/function (_BaseLayer) {
|
|
|
63
63
|
|
|
64
64
|
return this;
|
|
65
65
|
}
|
|
66
|
-
}, {
|
|
67
|
-
key: "getConfigSchema",
|
|
68
|
-
value: function getConfigSchema() {
|
|
69
|
-
return {
|
|
70
|
-
properties: {
|
|
71
|
-
opacity: {
|
|
72
|
-
type: 'number',
|
|
73
|
-
minimum: 0,
|
|
74
|
-
maximum: 1
|
|
75
|
-
}
|
|
76
|
-
}
|
|
77
|
-
};
|
|
78
|
-
}
|
|
79
66
|
}, {
|
|
80
67
|
key: "getDefaultConfig",
|
|
81
68
|
value: function getDefaultConfig() {
|
package/es/wind/models/wind.d.ts
CHANGED
|
@@ -17,15 +17,6 @@ export default class WindModel extends BaseModel {
|
|
|
17
17
|
};
|
|
18
18
|
buildModels(callbackModel: (models: IModel[]) => void): void;
|
|
19
19
|
clearModels(): void;
|
|
20
|
-
protected getConfigSchema(): {
|
|
21
|
-
properties: {
|
|
22
|
-
opacity: {
|
|
23
|
-
type: string;
|
|
24
|
-
minimum: number;
|
|
25
|
-
maximum: number;
|
|
26
|
-
};
|
|
27
|
-
};
|
|
28
|
-
};
|
|
29
20
|
protected registerBuiltinAttributes(): void;
|
|
30
21
|
private getZoomScale;
|
|
31
22
|
private drawWind;
|
package/es/wind/models/wind.js
CHANGED
|
@@ -161,8 +161,7 @@ var WindModel = /*#__PURE__*/function (_BaseModel) {
|
|
|
161
161
|
enable: false
|
|
162
162
|
},
|
|
163
163
|
stencil: getMask(mask, maskInside),
|
|
164
|
-
blend: this.getBlend()
|
|
165
|
-
pick: false
|
|
164
|
+
blend: this.getBlend()
|
|
166
165
|
}).then(function (model) {
|
|
167
166
|
_this3.colorModel = model;
|
|
168
167
|
callbackModel([model]);
|
|
@@ -196,19 +195,6 @@ var WindModel = /*#__PURE__*/function (_BaseModel) {
|
|
|
196
195
|
(_this$texture = this.texture) === null || _this$texture === void 0 ? void 0 : _this$texture.destroy();
|
|
197
196
|
(_this$wind = this.wind) === null || _this$wind === void 0 ? void 0 : _this$wind.destroy();
|
|
198
197
|
}
|
|
199
|
-
}, {
|
|
200
|
-
key: "getConfigSchema",
|
|
201
|
-
value: function getConfigSchema() {
|
|
202
|
-
return {
|
|
203
|
-
properties: {
|
|
204
|
-
opacity: {
|
|
205
|
-
type: 'number',
|
|
206
|
-
minimum: 0,
|
|
207
|
-
maximum: 1
|
|
208
|
-
}
|
|
209
|
-
}
|
|
210
|
-
};
|
|
211
|
-
}
|
|
212
198
|
}, {
|
|
213
199
|
key: "registerBuiltinAttributes",
|
|
214
200
|
value: function registerBuiltinAttributes() {
|
package/lib/Geometry/index.js
CHANGED
|
@@ -81,19 +81,6 @@ var GeometryLayer = /*#__PURE__*/function (_BaseLayer) {
|
|
|
81
81
|
_this3.dispatchModelLoad(models);
|
|
82
82
|
});
|
|
83
83
|
}
|
|
84
|
-
}, {
|
|
85
|
-
key: "getConfigSchema",
|
|
86
|
-
value: function getConfigSchema() {
|
|
87
|
-
return {
|
|
88
|
-
properties: {
|
|
89
|
-
opacity: {
|
|
90
|
-
type: 'number',
|
|
91
|
-
minimum: 0,
|
|
92
|
-
maximum: 1
|
|
93
|
-
}
|
|
94
|
-
}
|
|
95
|
-
};
|
|
96
|
-
}
|
|
97
84
|
}, {
|
|
98
85
|
key: "getDefaultConfig",
|
|
99
86
|
value: function getDefaultConfig() {
|
|
@@ -184,19 +184,6 @@ var BillBoardModel = /*#__PURE__*/function (_BaseModel) {
|
|
|
184
184
|
this.layerService.reRender();
|
|
185
185
|
}
|
|
186
186
|
}
|
|
187
|
-
}, {
|
|
188
|
-
key: "getConfigSchema",
|
|
189
|
-
value: function getConfigSchema() {
|
|
190
|
-
return {
|
|
191
|
-
properties: {
|
|
192
|
-
opacity: {
|
|
193
|
-
type: 'number',
|
|
194
|
-
minimum: 0,
|
|
195
|
-
maximum: 1
|
|
196
|
-
}
|
|
197
|
-
}
|
|
198
|
-
};
|
|
199
|
-
}
|
|
200
187
|
}, {
|
|
201
188
|
key: "registerBuiltinAttributes",
|
|
202
189
|
value: function registerBuiltinAttributes() {
|
|
@@ -392,19 +392,6 @@ var PlaneModel = /*#__PURE__*/function (_BaseModel) {
|
|
|
392
392
|
terrainImage.src = terrainTexture;
|
|
393
393
|
}
|
|
394
394
|
}
|
|
395
|
-
}, {
|
|
396
|
-
key: "getConfigSchema",
|
|
397
|
-
value: function getConfigSchema() {
|
|
398
|
-
return {
|
|
399
|
-
properties: {
|
|
400
|
-
opacity: {
|
|
401
|
-
type: 'number',
|
|
402
|
-
minimum: 0,
|
|
403
|
-
maximum: 1
|
|
404
|
-
}
|
|
405
|
-
}
|
|
406
|
-
};
|
|
407
|
-
}
|
|
408
395
|
}, {
|
|
409
396
|
key: "registerBuiltinAttributes",
|
|
410
397
|
value: function registerBuiltinAttributes() {
|
|
@@ -290,19 +290,6 @@ var SpriteModel = /*#__PURE__*/function (_BaseModel) {
|
|
|
290
290
|
});
|
|
291
291
|
}
|
|
292
292
|
}
|
|
293
|
-
}, {
|
|
294
|
-
key: "getConfigSchema",
|
|
295
|
-
value: function getConfigSchema() {
|
|
296
|
-
return {
|
|
297
|
-
properties: {
|
|
298
|
-
opacity: {
|
|
299
|
-
type: 'number',
|
|
300
|
-
minimum: 0,
|
|
301
|
-
maximum: 1
|
|
302
|
-
}
|
|
303
|
-
}
|
|
304
|
-
};
|
|
305
|
-
}
|
|
306
293
|
}, {
|
|
307
294
|
key: "registerBuiltinAttributes",
|
|
308
295
|
value: function registerBuiltinAttributes() {
|
package/lib/canvas/index.js
CHANGED
|
@@ -99,19 +99,6 @@ var CanvasLayer = /*#__PURE__*/function (_BaseLayer) {
|
|
|
99
99
|
});
|
|
100
100
|
return this;
|
|
101
101
|
}
|
|
102
|
-
}, {
|
|
103
|
-
key: "getConfigSchema",
|
|
104
|
-
value: function getConfigSchema() {
|
|
105
|
-
return {
|
|
106
|
-
properties: {
|
|
107
|
-
opacity: {
|
|
108
|
-
type: 'number',
|
|
109
|
-
minimum: 0,
|
|
110
|
-
maximum: 1
|
|
111
|
-
}
|
|
112
|
-
}
|
|
113
|
-
};
|
|
114
|
-
}
|
|
115
102
|
}, {
|
|
116
103
|
key: "getDefaultConfig",
|
|
117
104
|
value: function getDefaultConfig() {
|
|
@@ -74,19 +74,6 @@ var CityBuildingLayer = /*#__PURE__*/function (_BaseLayer) {
|
|
|
74
74
|
time: t
|
|
75
75
|
});
|
|
76
76
|
}
|
|
77
|
-
}, {
|
|
78
|
-
key: "getConfigSchema",
|
|
79
|
-
value: function getConfigSchema() {
|
|
80
|
-
return {
|
|
81
|
-
properties: {
|
|
82
|
-
opacity: {
|
|
83
|
-
type: 'number',
|
|
84
|
-
minimum: 0,
|
|
85
|
-
maximum: 1
|
|
86
|
-
}
|
|
87
|
-
}
|
|
88
|
-
};
|
|
89
|
-
}
|
|
90
77
|
}, {
|
|
91
78
|
key: "getModelType",
|
|
92
79
|
value: function getModelType() {
|
package/lib/core/BaseLayer.js
CHANGED
|
@@ -790,6 +790,7 @@ var BaseLayer = (_dec = (0, _l7Core.lazyInject)(_l7Core.TYPES.IGlobalConfigServi
|
|
|
790
790
|
visible: true
|
|
791
791
|
});
|
|
792
792
|
this.reRender();
|
|
793
|
+
this.emit('show');
|
|
793
794
|
return this;
|
|
794
795
|
}
|
|
795
796
|
}, {
|
|
@@ -799,6 +800,7 @@ var BaseLayer = (_dec = (0, _l7Core.lazyInject)(_l7Core.TYPES.IGlobalConfigServi
|
|
|
799
800
|
visible: false
|
|
800
801
|
});
|
|
801
802
|
this.reRender();
|
|
803
|
+
this.emit('hide');
|
|
802
804
|
return this;
|
|
803
805
|
}
|
|
804
806
|
}, {
|
|
@@ -970,7 +972,7 @@ var BaseLayer = (_dec = (0, _l7Core.lazyInject)(_l7Core.TYPES.IGlobalConfigServi
|
|
|
970
972
|
this.masks = [];
|
|
971
973
|
this.hooks.beforeDestroy.call(); // 清除sources事件
|
|
972
974
|
|
|
973
|
-
this.layerSource.off('
|
|
975
|
+
this.layerSource.off('update', this.sourceEvent);
|
|
974
976
|
(_this$multiPassRender = this.multiPassRenderer) === null || _this$multiPassRender === void 0 ? void 0 : _this$multiPassRender.destroy(); // 清除所有属性以及关联的 vao == 销毁所有 => model this.models.forEach((model) => model.destroy());
|
|
975
977
|
|
|
976
978
|
this.styleAttributeService.clearAllAttributes(); // 执行每个图层单独的 clearModels 方法 (清除一些额外的 texture、program、buffer 等)
|
|
@@ -1024,7 +1026,7 @@ var BaseLayer = (_dec = (0, _l7Core.lazyInject)(_l7Core.TYPES.IGlobalConfigServi
|
|
|
1024
1026
|
|
|
1025
1027
|
// 清除旧 sources 事件
|
|
1026
1028
|
if (this.layerSource) {
|
|
1027
|
-
this.layerSource.off('
|
|
1029
|
+
this.layerSource.off('update', this.sourceEvent);
|
|
1028
1030
|
}
|
|
1029
1031
|
|
|
1030
1032
|
this.layerSource = source;
|
|
@@ -1038,17 +1040,16 @@ var BaseLayer = (_dec = (0, _l7Core.lazyInject)(_l7Core.TYPES.IGlobalConfigServi
|
|
|
1038
1040
|
|
|
1039
1041
|
if (this.layerSource.inited) {
|
|
1040
1042
|
this.sourceEvent();
|
|
1041
|
-
} // this.layerSource.inited 为 true
|
|
1043
|
+
} // this.layerSource.inited 为 true update 事件不会再触发
|
|
1042
1044
|
|
|
1043
1045
|
|
|
1044
|
-
this.layerSource.on('
|
|
1046
|
+
this.layerSource.on('update', function () {
|
|
1045
1047
|
if (_this8.coordCenter === undefined) {
|
|
1048
|
+
var _this8$mapService;
|
|
1049
|
+
|
|
1046
1050
|
var layerCenter = _this8.layerSource.center;
|
|
1047
1051
|
_this8.coordCenter = layerCenter;
|
|
1048
|
-
_this8.mapService.setCoordCenter && _this8.mapService.setCoordCenter(layerCenter);
|
|
1049
|
-
// this.mapService.map.customCoords.setCenter(layerCenter);
|
|
1050
|
-
// // @ts-ignore
|
|
1051
|
-
// this.mapService.setCustomCoordCenter(layerCenter);
|
|
1052
|
+
((_this8$mapService = _this8.mapService) === null || _this8$mapService === void 0 ? void 0 : _this8$mapService.setCoordCenter) && _this8.mapService.setCoordCenter(layerCenter);
|
|
1052
1053
|
}
|
|
1053
1054
|
|
|
1054
1055
|
_this8.sourceEvent();
|
|
@@ -1080,6 +1081,19 @@ var BaseLayer = (_dec = (0, _l7Core.lazyInject)(_l7Core.TYPES.IGlobalConfigServi
|
|
|
1080
1081
|
value: function getScale(name) {
|
|
1081
1082
|
return this.styleAttributeService.getLayerAttributeScale(name);
|
|
1082
1083
|
}
|
|
1084
|
+
}, {
|
|
1085
|
+
key: "getLegend",
|
|
1086
|
+
value: function getLegend(name) {
|
|
1087
|
+
var _attribute$scale, _scales$0$option, _attribute$scale2;
|
|
1088
|
+
|
|
1089
|
+
var attribute = this.styleAttributeService.getLayerStyleAttribute(name);
|
|
1090
|
+
var scales = (attribute === null || attribute === void 0 ? void 0 : (_attribute$scale = attribute.scale) === null || _attribute$scale === void 0 ? void 0 : _attribute$scale.scalers) || [];
|
|
1091
|
+
return {
|
|
1092
|
+
type: (_scales$0$option = scales[0].option) === null || _scales$0$option === void 0 ? void 0 : _scales$0$option.type,
|
|
1093
|
+
field: attribute === null || attribute === void 0 ? void 0 : (_attribute$scale2 = attribute.scale) === null || _attribute$scale2 === void 0 ? void 0 : _attribute$scale2.field,
|
|
1094
|
+
items: this.getLegendItems(name)
|
|
1095
|
+
};
|
|
1096
|
+
}
|
|
1083
1097
|
}, {
|
|
1084
1098
|
key: "getLegendItems",
|
|
1085
1099
|
value: function getLegendItems(name) {
|
|
@@ -1368,11 +1382,6 @@ var BaseLayer = (_dec = (0, _l7Core.lazyInject)(_l7Core.TYPES.IGlobalConfigServi
|
|
|
1368
1382
|
value: function setEarthTime(time) {
|
|
1369
1383
|
console.warn('empty fn');
|
|
1370
1384
|
}
|
|
1371
|
-
}, {
|
|
1372
|
-
key: "getConfigSchema",
|
|
1373
|
-
value: function getConfigSchema() {
|
|
1374
|
-
throw new Error('Method not implemented.');
|
|
1375
|
-
}
|
|
1376
1385
|
}, {
|
|
1377
1386
|
key: "getModelType",
|
|
1378
1387
|
value: function getModelType() {
|
package/lib/core/BaseModel.js
CHANGED
|
@@ -39,6 +39,7 @@ function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o =
|
|
|
39
39
|
|
|
40
40
|
function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) { arr2[i] = arr[i]; } return arr2; }
|
|
41
41
|
|
|
42
|
+
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
42
43
|
var BaseModel = (_dec = (0, _l7Core.lazyInject)(_l7Core.TYPES.IGlobalConfigService), (_class = /*#__PURE__*/function () {
|
|
43
44
|
// style texture data mapping
|
|
44
45
|
// 用于数据传递的数据纹理
|
|
@@ -19,6 +19,8 @@ exports.PolygonExtrudeTriangulation = PolygonExtrudeTriangulation;
|
|
|
19
19
|
exports.RasterImageTriangulation = RasterImageTriangulation;
|
|
20
20
|
exports.SimpleLineTriangulation = SimpleLineTriangulation;
|
|
21
21
|
exports.TileSimpleLineTriangulation = TileSimpleLineTriangulation;
|
|
22
|
+
exports.checkIsClosed = checkIsClosed;
|
|
23
|
+
exports.computeVertexNormals = computeVertexNormals;
|
|
22
24
|
exports.earthOuterTriangulation = earthOuterTriangulation;
|
|
23
25
|
exports.earthTriangulation = earthTriangulation;
|
|
24
26
|
exports.polygonTriangulation = polygonTriangulation;
|
|
@@ -447,7 +449,6 @@ function HeatmapTriangulation(feature) {
|
|
|
447
449
|
coordinates.push(0);
|
|
448
450
|
}
|
|
449
451
|
|
|
450
|
-
var size = feature.size;
|
|
451
452
|
var dir = addDir(-1, 1);
|
|
452
453
|
var dir1 = addDir(1, 1);
|
|
453
454
|
var dir2 = addDir(-1, -1);
|
package/lib/glsl.d.ts
ADDED
package/lib/heatmap/index.js
CHANGED
|
@@ -106,19 +106,6 @@ var HeatMapLayer = /*#__PURE__*/function (_BaseLayer) {
|
|
|
106
106
|
console.warn('data error');
|
|
107
107
|
}
|
|
108
108
|
}
|
|
109
|
-
}, {
|
|
110
|
-
key: "getConfigSchema",
|
|
111
|
-
value: function getConfigSchema() {
|
|
112
|
-
return {
|
|
113
|
-
properties: {
|
|
114
|
-
opacity: {
|
|
115
|
-
type: 'number',
|
|
116
|
-
minimum: 0,
|
|
117
|
-
maximum: 1
|
|
118
|
-
}
|
|
119
|
-
}
|
|
120
|
-
};
|
|
121
|
-
}
|
|
122
109
|
}, {
|
|
123
110
|
key: "getModelType",
|
|
124
111
|
value: function getModelType() {
|
|
@@ -235,8 +235,7 @@ var HeatMapModel = (_dec = (0, _inversify.injectable)(), _dec(_class = /*#__PURE
|
|
|
235
235
|
dstRGB: _l7Core.gl.ONE,
|
|
236
236
|
dstAlpha: 1
|
|
237
237
|
}
|
|
238
|
-
}
|
|
239
|
-
pick: false
|
|
238
|
+
}
|
|
240
239
|
});
|
|
241
240
|
|
|
242
241
|
case 3:
|
|
@@ -282,7 +281,6 @@ var HeatMapModel = (_dec = (0, _inversify.injectable)(), _dec(_class = /*#__PURE
|
|
|
282
281
|
createBuffer = _this$rendererService3.createBuffer,
|
|
283
282
|
createModel = _this$rendererService3.createModel;
|
|
284
283
|
return createModel({
|
|
285
|
-
pick: false,
|
|
286
284
|
vs: vs,
|
|
287
285
|
fs: fs,
|
|
288
286
|
attributes: {
|
package/lib/image/index.js
CHANGED
|
@@ -68,19 +68,6 @@ var ImageLayer = /*#__PURE__*/function (_BaseLayer) {
|
|
|
68
68
|
_this3.dispatchModelLoad(models);
|
|
69
69
|
});
|
|
70
70
|
}
|
|
71
|
-
}, {
|
|
72
|
-
key: "getConfigSchema",
|
|
73
|
-
value: function getConfigSchema() {
|
|
74
|
-
return {
|
|
75
|
-
properties: {
|
|
76
|
-
opacity: {
|
|
77
|
-
type: 'number',
|
|
78
|
-
minimum: 0,
|
|
79
|
-
maximum: 1
|
|
80
|
-
}
|
|
81
|
-
}
|
|
82
|
-
};
|
|
83
|
-
}
|
|
84
71
|
}, {
|
|
85
72
|
key: "getDefaultConfig",
|
|
86
73
|
value: function getDefaultConfig() {
|
|
@@ -137,8 +137,7 @@ var ImageDataModel = /*#__PURE__*/function (_BaseModel) {
|
|
|
137
137
|
enable: false
|
|
138
138
|
},
|
|
139
139
|
blend: this.getBlend(),
|
|
140
|
-
stencil: (0, _l7Utils.getMask)(mask, maskInside)
|
|
141
|
-
pick: false
|
|
140
|
+
stencil: (0, _l7Utils.getMask)(mask, maskInside)
|
|
142
141
|
}).then(function (model) {
|
|
143
142
|
callbackModel([model]);
|
|
144
143
|
}).catch(function (err) {
|
|
@@ -159,19 +158,6 @@ var ImageDataModel = /*#__PURE__*/function (_BaseModel) {
|
|
|
159
158
|
value: function buildModels(callbackModel) {
|
|
160
159
|
this.initModels(callbackModel);
|
|
161
160
|
}
|
|
162
|
-
}, {
|
|
163
|
-
key: "getConfigSchema",
|
|
164
|
-
value: function getConfigSchema() {
|
|
165
|
-
return {
|
|
166
|
-
properties: {
|
|
167
|
-
opacity: {
|
|
168
|
-
type: 'number',
|
|
169
|
-
minimum: 0,
|
|
170
|
-
maximum: 1
|
|
171
|
-
}
|
|
172
|
-
}
|
|
173
|
-
};
|
|
174
|
-
}
|
|
175
161
|
}, {
|
|
176
162
|
key: "registerBuiltinAttributes",
|
|
177
163
|
value: function registerBuiltinAttributes() {
|
|
@@ -117,8 +117,7 @@ var ImageModel = /*#__PURE__*/function (_BaseModel) {
|
|
|
117
117
|
depth: {
|
|
118
118
|
enable: false
|
|
119
119
|
},
|
|
120
|
-
stencil: (0, _l7Utils.getMask)(mask, maskInside)
|
|
121
|
-
pick: false
|
|
120
|
+
stencil: (0, _l7Utils.getMask)(mask, maskInside)
|
|
122
121
|
}).then(function (model) {
|
|
123
122
|
callbackModel([model]);
|
|
124
123
|
}).catch(function (err) {
|
|
@@ -138,19 +137,6 @@ var ImageModel = /*#__PURE__*/function (_BaseModel) {
|
|
|
138
137
|
value: function buildModels(callbackModel) {
|
|
139
138
|
this.initModels(callbackModel);
|
|
140
139
|
}
|
|
141
|
-
}, {
|
|
142
|
-
key: "getConfigSchema",
|
|
143
|
-
value: function getConfigSchema() {
|
|
144
|
-
return {
|
|
145
|
-
properties: {
|
|
146
|
-
opacity: {
|
|
147
|
-
type: 'number',
|
|
148
|
-
minimum: 0,
|
|
149
|
-
maximum: 1
|
|
150
|
-
}
|
|
151
|
-
}
|
|
152
|
-
};
|
|
153
|
-
}
|
|
154
140
|
}, {
|
|
155
141
|
key: "registerBuiltinAttributes",
|
|
156
142
|
value: function registerBuiltinAttributes() {
|
|
@@ -127,8 +127,7 @@ var ImageDataModel = /*#__PURE__*/function (_BaseModel) {
|
|
|
127
127
|
enable: false
|
|
128
128
|
},
|
|
129
129
|
blend: this.getBlend(),
|
|
130
|
-
stencil: (0, _l7Utils.getMask)(mask, maskInside)
|
|
131
|
-
pick: false
|
|
130
|
+
stencil: (0, _l7Utils.getMask)(mask, maskInside)
|
|
132
131
|
}).then(function (model) {
|
|
133
132
|
callbackModel([model]);
|
|
134
133
|
}).catch(function (err) {
|
|
@@ -148,19 +147,6 @@ var ImageDataModel = /*#__PURE__*/function (_BaseModel) {
|
|
|
148
147
|
value: function buildModels(callbackModel) {
|
|
149
148
|
this.initModels(callbackModel);
|
|
150
149
|
}
|
|
151
|
-
}, {
|
|
152
|
-
key: "getConfigSchema",
|
|
153
|
-
value: function getConfigSchema() {
|
|
154
|
-
return {
|
|
155
|
-
properties: {
|
|
156
|
-
opacity: {
|
|
157
|
-
type: 'number',
|
|
158
|
-
minimum: 0,
|
|
159
|
-
maximum: 1
|
|
160
|
-
}
|
|
161
|
-
}
|
|
162
|
-
};
|
|
163
|
-
}
|
|
164
150
|
}, {
|
|
165
151
|
key: "registerBuiltinAttributes",
|
|
166
152
|
value: function registerBuiltinAttributes() {
|
package/lib/index.js
CHANGED
|
@@ -143,7 +143,7 @@ var _mask = _interopRequireDefault(require("./mask"));
|
|
|
143
143
|
|
|
144
144
|
var _wind = _interopRequireDefault(require("./wind"));
|
|
145
145
|
|
|
146
|
-
var _tileTest = _interopRequireDefault(require("./tile/tileTest"));
|
|
146
|
+
var _tileTest = _interopRequireDefault(require("./tile/tileFactory/layers/tileTest"));
|
|
147
147
|
|
|
148
148
|
var _DataMappingPlugin = _interopRequireDefault(require("./plugins/DataMappingPlugin"));
|
|
149
149
|
|