@antv/l7-layers 2.17.4 → 2.17.5
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.js +9 -31
- package/es/Geometry/models/billboard.js +51 -89
- package/es/Geometry/models/plane.js +81 -143
- package/es/Geometry/models/sprite.js +60 -118
- package/es/canvas/index.js +10 -33
- package/es/canvas/models/canvas.js +41 -97
- package/es/citybuliding/building.js +8 -27
- package/es/citybuliding/models/build.js +57 -82
- package/es/core/BaseLayer.js +325 -483
- package/es/core/BaseModel.js +51 -80
- package/es/core/CommonStyleAttribute.js +2 -5
- package/es/core/LayerPickService.js +21 -32
- package/es/core/TextureService.js +0 -13
- package/es/core/interface.js +17 -24
- package/es/core/shape/Path.js +13 -20
- package/es/core/shape/extrude.js +27 -39
- package/es/core/triangulation.js +99 -136
- package/es/earth/index.js +9 -33
- package/es/earth/models/atmosphere.js +30 -54
- package/es/earth/models/base.js +47 -85
- package/es/earth/models/bloomsphere.js +30 -54
- package/es/earth/utils.js +9 -13
- package/es/heatmap/index.js +10 -40
- package/es/heatmap/models/grid.js +28 -52
- package/es/heatmap/models/grid3d.js +28 -52
- package/es/heatmap/models/heatmap.js +92 -149
- package/es/heatmap/models/hexagon.js +28 -52
- package/es/heatmap/triangulation.js +0 -4
- package/es/image/index.js +9 -28
- package/es/image/models/image.js +66 -100
- package/es/index.js +9 -17
- package/es/line/index.js +9 -35
- package/es/line/models/arc.js +63 -112
- package/es/line/models/arc_3d.js +58 -102
- package/es/line/models/earthArc_3d.js +60 -105
- package/es/line/models/flow.js +36 -60
- package/es/line/models/great_circle.js +53 -94
- package/es/line/models/line.js +92 -144
- package/es/line/models/linearline.js +42 -74
- package/es/line/models/simpleLine.js +38 -67
- package/es/line/models/wall.js +52 -92
- package/es/line/shaders/dash/line_dash_vert.glsl +1 -2
- package/es/line/shaders/line_frag.glsl +1 -3
- package/es/line/shaders/line_vert.glsl +2 -0
- package/es/line/shaders/linear/line_linear_frag.glsl +1 -1
- package/es/mask/index.js +9 -28
- package/es/mask/models/fill.js +29 -54
- package/es/plugins/DataMappingPlugin.js +78 -114
- package/es/plugins/DataSourcePlugin.js +45 -68
- package/es/plugins/FeatureScalePlugin.js +67 -122
- package/es/plugins/LayerAnimateStylePlugin.js +0 -5
- package/es/plugins/LayerMaskPlugin.js +3 -11
- package/es/plugins/LayerModelPlugin.js +69 -118
- package/es/plugins/LayerStylePlugin.js +4 -9
- package/es/plugins/LightingPlugin.js +12 -18
- package/es/plugins/MultiPassRendererPlugin.js +11 -16
- package/es/plugins/PixelPickingPlugin.js +12 -21
- package/es/plugins/RegisterStyleAttributePlugin.js +5 -12
- package/es/plugins/ShaderUniformPlugin.js +13 -27
- package/es/plugins/UpdateModelPlugin.js +0 -5
- package/es/plugins/UpdateStyleAttributePlugin.js +5 -11
- package/es/point/index.js +26 -78
- package/es/point/models/earthExtrude.js +58 -95
- package/es/point/models/earthFill.js +52 -80
- package/es/point/models/extrude.js +57 -94
- package/es/point/models/fill.js +56 -81
- package/es/point/models/fillmage.js +60 -100
- package/es/point/models/image.js +47 -83
- package/es/point/models/index.js +2 -2
- package/es/point/models/normal.js +30 -54
- package/es/point/models/radar.js +38 -63
- package/es/point/models/simplePoint.js +38 -62
- package/es/point/models/text.js +199 -296
- package/es/point/shape/extrude.js +4 -13
- package/es/polygon/index.js +11 -41
- package/es/polygon/models/extrude.js +87 -135
- package/es/polygon/models/fill.js +50 -79
- package/es/polygon/models/index.js +3 -2
- package/es/polygon/models/ocean.js +42 -76
- package/es/polygon/models/water.js +37 -71
- package/es/raster/buffers/triangulation.js +2 -4
- package/es/raster/index.js +9 -32
- package/es/raster/models/raster.js +80 -116
- package/es/raster/models/rasterRgb.js +84 -127
- package/es/raster/models/rasterTerrainRgb.js +56 -84
- package/es/tile/interaction/getRasterData.js +14 -20
- package/es/tile/interaction/utils.js +7 -9
- package/es/tile/manager/base.js +63 -96
- package/es/tile/service/TileLayerService.js +33 -55
- package/es/tile/service/TilePickService.js +26 -40
- package/es/tile/service/TileSourceService.js +3 -7
- package/es/tile/tileFactory/DebugTile.js +29 -46
- package/es/tile/tileFactory/ImageTile.js +20 -38
- package/es/tile/tileFactory/MaskTile.js +22 -43
- package/es/tile/tileFactory/RasterRGBTile.js +22 -42
- package/es/tile/tileFactory/RasterTerrainRGBTile.js +20 -38
- package/es/tile/tileFactory/RasterTile.js +30 -53
- package/es/tile/tileFactory/Tile.js +63 -97
- package/es/tile/tileFactory/VectorTile.js +41 -68
- package/es/tile/tileFactory/index.js +0 -11
- package/es/tile/tileFactory/layers/TileDebugLayer.js +6 -27
- package/es/tile/tileFactory/util.js +0 -3
- package/es/tile/tileLayer/BaseLayer.js +105 -146
- package/es/tile/utils.js +1 -1
- package/es/utils/blend.js +0 -2
- package/es/utils/collision-index.js +9 -16
- package/es/utils/extrude_polyline.js +101 -149
- package/es/utils/grid-index.js +2 -27
- package/es/utils/identityScale.js +0 -8
- package/es/utils/layerData.js +30 -44
- package/es/utils/multiPassRender.js +11 -13
- package/es/utils/polylineNormal.js +31 -37
- package/es/utils/simpleLine.js +2 -16
- package/es/utils/stencil.js +2 -3
- package/es/utils/symbol-layout.js +27 -53
- package/es/wind/index.js +9 -29
- package/es/wind/models/utils.js +26 -51
- package/es/wind/models/wind.js +101 -147
- package/es/wind/models/windRender.js +53 -66
- package/lib/Geometry/index.js +9 -38
- package/lib/Geometry/models/billboard.js +51 -97
- package/lib/Geometry/models/index.js +0 -5
- package/lib/Geometry/models/plane.js +79 -151
- package/lib/Geometry/models/sprite.js +60 -127
- package/lib/canvas/index.js +10 -40
- package/lib/canvas/models/canvas.js +41 -101
- package/lib/canvas/models/index.js +0 -3
- package/lib/citybuliding/building.js +8 -35
- package/lib/citybuliding/models/build.js +57 -92
- package/lib/core/BaseLayer.js +325 -474
- package/lib/core/BaseModel.js +51 -90
- package/lib/core/CommonStyleAttribute.js +2 -7
- package/lib/core/LayerPickService.js +21 -37
- package/lib/core/TextureService.js +0 -16
- package/lib/core/interface.js +21 -31
- package/lib/core/schema.js +0 -1
- package/lib/core/shape/Path.js +14 -31
- package/lib/core/shape/extrude.js +27 -62
- package/lib/core/triangulation.js +98 -177
- package/lib/earth/index.js +9 -43
- package/lib/earth/models/atmosphere.js +30 -63
- package/lib/earth/models/base.js +47 -90
- package/lib/earth/models/bloomsphere.js +30 -63
- package/lib/earth/utils.js +7 -31
- package/lib/heatmap/index.js +10 -48
- package/lib/heatmap/models/grid.js +28 -60
- package/lib/heatmap/models/grid3d.js +28 -60
- package/lib/heatmap/models/heatmap.js +92 -166
- package/lib/heatmap/models/hexagon.js +28 -60
- package/lib/heatmap/models/index.js +0 -6
- package/lib/heatmap/triangulation.js +0 -5
- package/lib/image/index.js +9 -36
- package/lib/image/models/image.js +66 -109
- package/lib/image/models/index.js +0 -3
- package/lib/index.js +7 -61
- package/lib/line/index.js +9 -40
- package/lib/line/models/arc.js +61 -122
- package/lib/line/models/arc_3d.js +56 -113
- package/lib/line/models/earthArc_3d.js +58 -115
- package/lib/line/models/flow.js +36 -70
- package/lib/line/models/great_circle.js +53 -104
- package/lib/line/models/index.js +0 -11
- package/lib/line/models/line.js +90 -152
- package/lib/line/models/linearline.js +42 -86
- package/lib/line/models/simpleLine.js +38 -77
- package/lib/line/models/wall.js +52 -103
- package/lib/line/shaders/dash/line_dash_vert.glsl +1 -2
- package/lib/line/shaders/line_frag.glsl +1 -3
- package/lib/line/shaders/line_vert.glsl +2 -0
- package/lib/line/shaders/linear/line_linear_frag.glsl +1 -1
- package/lib/mask/index.js +9 -36
- package/lib/mask/models/fill.js +29 -63
- package/lib/mask/models/index.js +0 -3
- package/lib/plugins/DataMappingPlugin.js +78 -125
- package/lib/plugins/DataSourcePlugin.js +45 -76
- package/lib/plugins/FeatureScalePlugin.js +67 -138
- package/lib/plugins/LayerAnimateStylePlugin.js +0 -10
- package/lib/plugins/LayerMaskPlugin.js +4 -17
- package/lib/plugins/LayerModelPlugin.js +70 -127
- package/lib/plugins/LayerStylePlugin.js +5 -14
- package/lib/plugins/LightingPlugin.js +12 -25
- package/lib/plugins/MultiPassRendererPlugin.js +11 -22
- package/lib/plugins/PixelPickingPlugin.js +12 -27
- package/lib/plugins/RegisterStyleAttributePlugin.js +5 -19
- package/lib/plugins/ShaderUniformPlugin.js +13 -34
- package/lib/plugins/UpdateModelPlugin.js +1 -10
- package/lib/plugins/UpdateStyleAttributePlugin.js +5 -16
- package/lib/point/index.js +26 -83
- package/lib/point/models/earthExtrude.js +58 -106
- package/lib/point/models/earthFill.js +52 -110
- package/lib/point/models/extrude.js +57 -103
- package/lib/point/models/fill.js +54 -90
- package/lib/point/models/fillmage.js +58 -107
- package/lib/point/models/image.js +47 -92
- package/lib/point/models/index.js +1 -12
- package/lib/point/models/normal.js +30 -64
- package/lib/point/models/radar.js +38 -72
- package/lib/point/models/simplePoint.js +38 -72
- package/lib/point/models/text.js +199 -305
- package/lib/point/shape/extrude.js +4 -20
- package/lib/polygon/index.js +11 -48
- package/lib/polygon/models/extrude.js +87 -146
- package/lib/polygon/models/fill.js +50 -89
- package/lib/polygon/models/index.js +2 -14
- package/lib/polygon/models/ocean.js +42 -88
- package/lib/polygon/models/water.js +37 -82
- package/lib/raster/buffers/triangulation.js +3 -7
- package/lib/raster/index.js +9 -40
- package/lib/raster/models/index.js +0 -5
- package/lib/raster/models/raster.js +80 -125
- package/lib/raster/models/rasterRgb.js +84 -139
- package/lib/raster/models/rasterTerrainRgb.js +56 -93
- package/lib/tile/interaction/getRasterData.js +14 -25
- package/lib/tile/interaction/utils.js +7 -19
- package/lib/tile/manager/base.js +63 -104
- package/lib/tile/service/TileLayerService.js +33 -60
- package/lib/tile/service/TilePickService.js +26 -48
- package/lib/tile/service/TileSourceService.js +2 -16
- package/lib/tile/style/utils.js +0 -3
- package/lib/tile/tileFactory/DebugTile.js +29 -54
- package/lib/tile/tileFactory/ImageTile.js +20 -46
- package/lib/tile/tileFactory/MaskTile.js +22 -51
- package/lib/tile/tileFactory/RasterRGBTile.js +22 -50
- package/lib/tile/tileFactory/RasterTerrainRGBTile.js +20 -46
- package/lib/tile/tileFactory/RasterTile.js +30 -63
- package/lib/tile/tileFactory/Tile.js +63 -102
- package/lib/tile/tileFactory/VectorTile.js +41 -76
- package/lib/tile/tileFactory/index.js +0 -25
- package/lib/tile/tileFactory/layers/TileDebugLayer.js +6 -32
- package/lib/tile/tileFactory/util.js +0 -9
- package/lib/tile/tileLayer/BaseLayer.js +105 -153
- package/lib/tile/utils.js +1 -5
- package/lib/utils/blend.js +0 -5
- package/lib/utils/collision-index.js +9 -25
- package/lib/utils/extrude_polyline.js +101 -181
- package/lib/utils/grid-index.js +2 -28
- package/lib/utils/identityScale.js +0 -9
- package/lib/utils/layerData.js +30 -49
- package/lib/utils/multiPassRender.js +11 -16
- package/lib/utils/polylineNormal.js +31 -66
- package/lib/utils/simpleLine.js +2 -21
- package/lib/utils/stencil.js +0 -4
- package/lib/utils/symbol-layout.js +27 -55
- package/lib/wind/index.js +9 -37
- package/lib/wind/models/index.js +0 -3
- package/lib/wind/models/utils.js +26 -62
- package/lib/wind/models/wind.js +101 -157
- package/lib/wind/models/windRender.js +53 -71
- package/lib/wind/models/windShader.js +0 -1
- package/package.json +7 -7
|
@@ -1,112 +1,83 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
3
|
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
4
|
-
|
|
5
4
|
Object.defineProperty(exports, "__esModule", {
|
|
6
5
|
value: true
|
|
7
6
|
});
|
|
8
7
|
exports.default = void 0;
|
|
9
|
-
|
|
10
8
|
var _regenerator = _interopRequireDefault(require("@babel/runtime/regenerator"));
|
|
11
|
-
|
|
12
9
|
var _asyncToGenerator2 = _interopRequireDefault(require("@babel/runtime/helpers/asyncToGenerator"));
|
|
13
|
-
|
|
14
10
|
var _classCallCheck2 = _interopRequireDefault(require("@babel/runtime/helpers/classCallCheck"));
|
|
15
|
-
|
|
16
11
|
var _createClass2 = _interopRequireDefault(require("@babel/runtime/helpers/createClass"));
|
|
17
|
-
|
|
18
12
|
var _assertThisInitialized2 = _interopRequireDefault(require("@babel/runtime/helpers/assertThisInitialized"));
|
|
19
|
-
|
|
20
13
|
var _inherits2 = _interopRequireDefault(require("@babel/runtime/helpers/inherits"));
|
|
21
|
-
|
|
22
14
|
var _possibleConstructorReturn2 = _interopRequireDefault(require("@babel/runtime/helpers/possibleConstructorReturn"));
|
|
23
|
-
|
|
24
15
|
var _getPrototypeOf2 = _interopRequireDefault(require("@babel/runtime/helpers/getPrototypeOf"));
|
|
25
|
-
|
|
26
16
|
var _defineProperty2 = _interopRequireDefault(require("@babel/runtime/helpers/defineProperty"));
|
|
27
|
-
|
|
28
17
|
var _l7Core = require("@antv/l7-core");
|
|
29
|
-
|
|
30
18
|
var _l7Utils = require("@antv/l7-utils");
|
|
31
|
-
|
|
32
19
|
var _BaseModel2 = _interopRequireDefault(require("../../core/BaseModel"));
|
|
33
|
-
|
|
34
20
|
var _triangulation = require("../../core/triangulation");
|
|
35
|
-
|
|
36
21
|
function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = (0, _getPrototypeOf2.default)(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = (0, _getPrototypeOf2.default)(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return (0, _possibleConstructorReturn2.default)(this, result); }; }
|
|
37
|
-
|
|
38
22
|
function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }
|
|
39
|
-
|
|
40
23
|
/* babel-plugin-inline-import '../shaders/extrude/extrude_frag.glsl' */
|
|
41
24
|
var pointExtrudeFrag = "varying vec4 v_color;\nvarying float v_lightWeight;\nuniform float u_pickLight: 0.0;\n\n#pragma include \"picking\"\n\n\nvoid main() {\n\n gl_FragColor = v_color;\n // \u5F00\u542F\u900F\u660E\u5EA6\u6E10\u53D8\n // picking\n if(u_pickLight > 0.0) {\n gl_FragColor = filterColorAlpha(gl_FragColor, v_lightWeight);\n } else {\n gl_FragColor = filterColor(gl_FragColor);\n }\n}\n";
|
|
42
|
-
|
|
43
25
|
/* babel-plugin-inline-import '../shaders/extrude/extrude_vert.glsl' */
|
|
44
26
|
var pointExtrudeVert = "precision highp float;\n\n#define pi 3.1415926535\n#define ambientRatio 0.5\n#define diffuseRatio 0.3\n#define specularRatio 0.2\n\nattribute vec3 a_Position;\nattribute vec3 a_Pos;\nattribute vec4 a_Color;\nattribute vec3 a_Size;\nattribute vec3 a_Normal;\n\nuniform float u_heightfixed: 0.0; // \u9ED8\u8BA4\u4E0D\u56FA\u5B9A\nuniform float u_r;\nuniform mat4 u_ModelMatrix;\nuniform mat4 u_Mvp;\nvarying vec4 v_color;\nvarying float v_lightWeight;\nvarying float v_barLinearZ;\n\nuniform float u_opacity : 1;\nuniform float u_lightEnable: 1;\nuniform float u_opacitylinear: 0.0;\nuniform vec4 u_sourceColor;\nuniform vec4 u_targetColor;\nuniform float u_opacitylinear_dir: 1.0;\nuniform float u_linearColor: 0.0;\n\n\n#pragma include \"projection\"\n#pragma include \"light\"\n#pragma include \"picking\"\n\nfloat getYRadian(float x, float z) {\n if(x > 0.0 && z > 0.0) {\n return atan(x/z);\n } else if(x > 0.0 && z <= 0.0){\n return atan(-z/x) + pi/2.0;\n } else if(x <= 0.0 && z <= 0.0) {\n return pi + atan(x/z); //atan(x/z) + \n } else {\n return atan(z/-x) + pi*3.0/2.0;\n }\n}\n\nfloat getXRadian(float y, float r) {\n return atan(y/r);\n}\n\nvoid main() {\n\n\n vec3 size = a_Size * a_Position;\n\n vec3 offset = size; // \u63A7\u5236\u5706\u67F1\u4F53\u7684\u5927\u5C0F - \u4ECE\u6807\u51C6\u5355\u4F4D\u5706\u67F1\u4F53\u8FDB\u884C\u504F\u79FB\n\n if(u_heightfixed < 1.0) { // \u5706\u67F1\u4F53\u4E0D\u56FA\u5B9A\u9AD8\u5EA6\n \n if (u_CoordinateSystem == COORDINATE_SYSTEM_P20 || u_CoordinateSystem == COORDINATE_SYSTEM_P20_OFFSET) {\n // P20 \u5750\u6807\u7CFB\u4E0B\uFF0C\u4E3A\u4E86\u548C Web \u58A8\u5361\u6258\u5750\u6807\u7CFB\u7EDF\u4E00\uFF0Czoom \u9ED8\u8BA4\u51CF1\n offset = offset * pow(2.0, (19.0 - u_Zoom));\n }\n if(u_CoordinateSystem == COORDINATE_SYSTEM_P20_2) {\n // P20_2 \u5750\u6807\u7CFB\u4E0B\uFF0C\u4E3A\u4E86\u548C Web \u58A8\u5361\u6258\u5750\u6807\u7CFB\u7EDF\u4E00\uFF0Czoom \u9ED8\u8BA4\u51CF3\n offset = offset * pow(2.0, (19.0 - 3.0 - u_Zoom));\n }\n } else {// \u5706\u67F1\u4F53\u56FA\u5B9A\u9AD8\u5EA6 \uFF08 \u5904\u7406 mapbox \uFF09\n if(u_CoordinateSystem == COORDINATE_SYSTEM_LNGLAT || u_CoordinateSystem == COORDINATE_SYSTEM_LNGLAT_OFFSET) {\n offset *= 4.0/pow(2.0, 21.0 - u_Zoom);\n }\n }\n\n\n vec4 project_pos = project_position(vec4(a_Pos.xy, 0., 1.0));\n\n // u_r \u63A7\u5236\u5706\u67F1\u7684\u751F\u957F\n vec4 pos = vec4(project_pos.xy + offset.xy, offset.z * u_r, 1.0);\n\n // // \u5706\u67F1\u5149\u7167\u6548\u679C\n float lightWeight = 1.0;\n\n if(u_lightEnable > 0.0) { // \u53D6\u6D88\u4E09\u5143\u8868\u8FBE\u5F0F\uFF0C\u589E\u5F3A\u5065\u58EE\u6027\n lightWeight = calc_lighting(pos);\n }\n\n v_lightWeight = lightWeight;\n\n v_color = a_Color;\n\n // \u8BBE\u7F6E\u5706\u67F1\u7684\u5E95\u8272\n if(u_linearColor == 1.0) { // \u4F7F\u7528\u6E10\u53D8\u989C\u8272\n v_color = mix(u_sourceColor, u_targetColor, a_Position.z);\n v_color.a = v_color.a * u_opacity;\n } else {\n v_color = vec4(a_Color.rgb * lightWeight, a_Color.w * u_opacity);\n }\n\n if(u_opacitylinear > 0.0) {\n v_color.a *= u_opacitylinear_dir > 0.0 ? (1.0 - a_Position.z): a_Position.z;\n }\n\n\n // gl_Position = project_common_position_to_clipspace(pos);\n\n if(u_CoordinateSystem == COORDINATE_SYSTEM_P20_2) { // gaode2.x\n gl_Position = u_Mvp * pos;\n } else {\n gl_Position = project_common_position_to_clipspace(pos);\n }\n\n setPickingColor(a_PickingColor);\n}\n";
|
|
45
|
-
|
|
46
27
|
var ExtrudeModel = /*#__PURE__*/function (_BaseModel) {
|
|
47
28
|
(0, _inherits2.default)(ExtrudeModel, _BaseModel);
|
|
48
|
-
|
|
49
29
|
var _super = _createSuper(ExtrudeModel);
|
|
50
|
-
|
|
51
30
|
function ExtrudeModel() {
|
|
52
31
|
var _this;
|
|
53
|
-
|
|
54
32
|
(0, _classCallCheck2.default)(this, ExtrudeModel);
|
|
55
|
-
|
|
56
33
|
for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {
|
|
57
34
|
args[_key] = arguments[_key];
|
|
58
35
|
}
|
|
59
|
-
|
|
60
36
|
_this = _super.call.apply(_super, [this].concat(args));
|
|
61
37
|
(0, _defineProperty2.default)((0, _assertThisInitialized2.default)(_this), "raiseCount", 0);
|
|
62
38
|
(0, _defineProperty2.default)((0, _assertThisInitialized2.default)(_this), "raiseRepeat", 0);
|
|
63
39
|
return _this;
|
|
64
40
|
}
|
|
65
|
-
|
|
66
41
|
(0, _createClass2.default)(ExtrudeModel, [{
|
|
67
42
|
key: "getUninforms",
|
|
68
43
|
value: function getUninforms() {
|
|
69
44
|
var _ref = this.layer.getLayerConfig(),
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
45
|
+
_ref$animateOption = _ref.animateOption,
|
|
46
|
+
animateOption = _ref$animateOption === void 0 ? {
|
|
47
|
+
enable: false,
|
|
48
|
+
speed: 0.01,
|
|
49
|
+
repeat: false
|
|
50
|
+
} : _ref$animateOption,
|
|
51
|
+
_ref$opacity = _ref.opacity,
|
|
52
|
+
opacity = _ref$opacity === void 0 ? 1 : _ref$opacity,
|
|
53
|
+
sourceColor = _ref.sourceColor,
|
|
54
|
+
targetColor = _ref.targetColor,
|
|
55
|
+
_ref$pickLight = _ref.pickLight,
|
|
56
|
+
pickLight = _ref$pickLight === void 0 ? false : _ref$pickLight,
|
|
57
|
+
_ref$heightfixed = _ref.heightfixed,
|
|
58
|
+
heightfixed = _ref$heightfixed === void 0 ? false : _ref$heightfixed,
|
|
59
|
+
_ref$opacityLinear = _ref.opacityLinear,
|
|
60
|
+
opacityLinear = _ref$opacityLinear === void 0 ? {
|
|
61
|
+
enable: false,
|
|
62
|
+
dir: 'up'
|
|
63
|
+
} : _ref$opacityLinear,
|
|
64
|
+
_ref$lightEnable = _ref.lightEnable,
|
|
65
|
+
lightEnable = _ref$lightEnable === void 0 ? true : _ref$lightEnable;
|
|
66
|
+
|
|
67
|
+
// 转化渐变色
|
|
93
68
|
var useLinearColor = 0; // 默认不生效
|
|
94
|
-
|
|
95
69
|
var sourceColorArr = [0, 0, 0, 0];
|
|
96
70
|
var targetColorArr = [0, 0, 0, 0];
|
|
97
|
-
|
|
98
71
|
if (sourceColor && targetColor) {
|
|
99
72
|
sourceColorArr = (0, _l7Utils.rgb2arr)(sourceColor);
|
|
100
73
|
targetColorArr = (0, _l7Utils.rgb2arr)(targetColor);
|
|
101
74
|
useLinearColor = 1;
|
|
102
75
|
}
|
|
103
|
-
|
|
104
76
|
if (this.raiseCount < 1 && this.raiseRepeat > 0) {
|
|
105
77
|
if (animateOption.enable) {
|
|
106
78
|
var _animateOption$speed = animateOption.speed,
|
|
107
|
-
|
|
79
|
+
speed = _animateOption$speed === void 0 ? 0.01 : _animateOption$speed;
|
|
108
80
|
this.raiseCount += speed;
|
|
109
|
-
|
|
110
81
|
if (this.raiseCount >= 1) {
|
|
111
82
|
if (this.raiseRepeat > 1) {
|
|
112
83
|
this.raiseCount = 0;
|
|
@@ -117,7 +88,6 @@ var ExtrudeModel = /*#__PURE__*/function (_BaseModel) {
|
|
|
117
88
|
}
|
|
118
89
|
}
|
|
119
90
|
}
|
|
120
|
-
|
|
121
91
|
return {
|
|
122
92
|
// 圆柱体的拾取高亮是否要计算光照
|
|
123
93
|
u_pickLight: Number(pickLight),
|
|
@@ -141,23 +111,18 @@ var ExtrudeModel = /*#__PURE__*/function (_BaseModel) {
|
|
|
141
111
|
value: function () {
|
|
142
112
|
var _initModels = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee() {
|
|
143
113
|
return _regenerator.default.wrap(function _callee$(_context) {
|
|
144
|
-
while (1) {
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
case "end":
|
|
151
|
-
return _context.stop();
|
|
152
|
-
}
|
|
114
|
+
while (1) switch (_context.prev = _context.next) {
|
|
115
|
+
case 0:
|
|
116
|
+
return _context.abrupt("return", this.buildModels());
|
|
117
|
+
case 1:
|
|
118
|
+
case "end":
|
|
119
|
+
return _context.stop();
|
|
153
120
|
}
|
|
154
121
|
}, _callee, this);
|
|
155
122
|
}));
|
|
156
|
-
|
|
157
123
|
function initModels() {
|
|
158
124
|
return _initModels.apply(this, arguments);
|
|
159
125
|
}
|
|
160
|
-
|
|
161
126
|
return initModels;
|
|
162
127
|
}()
|
|
163
128
|
}, {
|
|
@@ -165,45 +130,38 @@ var ExtrudeModel = /*#__PURE__*/function (_BaseModel) {
|
|
|
165
130
|
value: function () {
|
|
166
131
|
var _buildModels = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee2() {
|
|
167
132
|
var _ref2, _ref2$depth, depth, _ref2$animateOption$r, repeat, model;
|
|
168
|
-
|
|
169
133
|
return _regenerator.default.wrap(function _callee2$(_context2) {
|
|
170
|
-
while (1) {
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
case 6:
|
|
196
|
-
case "end":
|
|
197
|
-
return _context2.stop();
|
|
198
|
-
}
|
|
134
|
+
while (1) switch (_context2.prev = _context2.next) {
|
|
135
|
+
case 0:
|
|
136
|
+
// GAODE1.x GAODE2.x MAPBOX
|
|
137
|
+
_ref2 = this.layer.getLayerConfig(), _ref2$depth = _ref2.depth, depth = _ref2$depth === void 0 ? true : _ref2$depth, _ref2$animateOption$r = _ref2.animateOption.repeat, repeat = _ref2$animateOption$r === void 0 ? 1 : _ref2$animateOption$r;
|
|
138
|
+
this.raiseRepeat = repeat;
|
|
139
|
+
_context2.next = 4;
|
|
140
|
+
return this.layer.buildLayerModel({
|
|
141
|
+
moduleName: 'pointExtrude',
|
|
142
|
+
vertexShader: pointExtrudeVert,
|
|
143
|
+
fragmentShader: pointExtrudeFrag,
|
|
144
|
+
triangulation: _triangulation.PointExtrudeTriangulation,
|
|
145
|
+
cull: {
|
|
146
|
+
enable: true,
|
|
147
|
+
face: (0, _l7Utils.getCullFace)(this.mapService.version)
|
|
148
|
+
},
|
|
149
|
+
depth: {
|
|
150
|
+
enable: depth
|
|
151
|
+
}
|
|
152
|
+
});
|
|
153
|
+
case 4:
|
|
154
|
+
model = _context2.sent;
|
|
155
|
+
return _context2.abrupt("return", [model]);
|
|
156
|
+
case 6:
|
|
157
|
+
case "end":
|
|
158
|
+
return _context2.stop();
|
|
199
159
|
}
|
|
200
160
|
}, _callee2, this);
|
|
201
161
|
}));
|
|
202
|
-
|
|
203
162
|
function buildModels() {
|
|
204
163
|
return _buildModels.apply(this, arguments);
|
|
205
164
|
}
|
|
206
|
-
|
|
207
165
|
return buildModels;
|
|
208
166
|
}()
|
|
209
167
|
}, {
|
|
@@ -223,26 +181,23 @@ var ExtrudeModel = /*#__PURE__*/function (_BaseModel) {
|
|
|
223
181
|
size: 3,
|
|
224
182
|
update: function update(feature) {
|
|
225
183
|
var size = feature.size;
|
|
226
|
-
|
|
227
184
|
if (size) {
|
|
228
185
|
var buffersize = [];
|
|
229
|
-
|
|
230
186
|
if (Array.isArray(size)) {
|
|
231
187
|
buffersize = size.length === 2 ? [size[0], size[0], size[1]] : size;
|
|
232
188
|
}
|
|
233
|
-
|
|
234
189
|
if (!Array.isArray(size)) {
|
|
235
190
|
buffersize = [size, size, size];
|
|
236
191
|
}
|
|
237
|
-
|
|
238
192
|
return buffersize;
|
|
239
193
|
} else {
|
|
240
194
|
return [2, 2, 2];
|
|
241
195
|
}
|
|
242
196
|
}
|
|
243
197
|
}
|
|
244
|
-
});
|
|
198
|
+
});
|
|
245
199
|
|
|
200
|
+
// point layer size;
|
|
246
201
|
this.styleAttributeService.registerStyleAttribute({
|
|
247
202
|
name: 'normal',
|
|
248
203
|
type: _l7Core.AttributeType.Attribute,
|
|
@@ -282,5 +237,4 @@ var ExtrudeModel = /*#__PURE__*/function (_BaseModel) {
|
|
|
282
237
|
}]);
|
|
283
238
|
return ExtrudeModel;
|
|
284
239
|
}(_BaseModel2.default);
|
|
285
|
-
|
|
286
240
|
exports.default = ExtrudeModel;
|
package/lib/point/models/fill.js
CHANGED
|
@@ -1,78 +1,55 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
3
|
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
4
|
-
|
|
5
4
|
Object.defineProperty(exports, "__esModule", {
|
|
6
5
|
value: true
|
|
7
6
|
});
|
|
8
7
|
exports.default = void 0;
|
|
9
|
-
|
|
10
8
|
var _regenerator = _interopRequireDefault(require("@babel/runtime/regenerator"));
|
|
11
|
-
|
|
12
9
|
var _asyncToGenerator2 = _interopRequireDefault(require("@babel/runtime/helpers/asyncToGenerator"));
|
|
13
|
-
|
|
14
10
|
var _objectSpread2 = _interopRequireDefault(require("@babel/runtime/helpers/objectSpread2"));
|
|
15
|
-
|
|
16
11
|
var _classCallCheck2 = _interopRequireDefault(require("@babel/runtime/helpers/classCallCheck"));
|
|
17
|
-
|
|
18
12
|
var _createClass2 = _interopRequireDefault(require("@babel/runtime/helpers/createClass"));
|
|
19
|
-
|
|
20
13
|
var _inherits2 = _interopRequireDefault(require("@babel/runtime/helpers/inherits"));
|
|
21
|
-
|
|
22
14
|
var _possibleConstructorReturn2 = _interopRequireDefault(require("@babel/runtime/helpers/possibleConstructorReturn"));
|
|
23
|
-
|
|
24
15
|
var _getPrototypeOf2 = _interopRequireDefault(require("@babel/runtime/helpers/getPrototypeOf"));
|
|
25
|
-
|
|
26
16
|
var _l7Core = require("@antv/l7-core");
|
|
27
|
-
|
|
28
17
|
var _l7Utils = require("@antv/l7-utils");
|
|
29
|
-
|
|
30
18
|
var _BaseModel2 = _interopRequireDefault(require("../../core/BaseModel"));
|
|
31
|
-
|
|
32
19
|
var _interface = require("../../core/interface");
|
|
33
|
-
|
|
34
20
|
function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = (0, _getPrototypeOf2.default)(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = (0, _getPrototypeOf2.default)(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return (0, _possibleConstructorReturn2.default)(this, result); }; }
|
|
35
|
-
|
|
36
21
|
function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }
|
|
37
|
-
|
|
38
22
|
/* babel-plugin-inline-import '../shaders/animate/wave_frag.glsl' */
|
|
39
23
|
// animate pointLayer shader - support animate
|
|
40
24
|
var waveFillFrag = "\nuniform float u_additive;\n\n\nvarying vec4 v_data;\nvarying vec4 v_color;\nvarying float v_radius;\nuniform float u_time;\nuniform vec4 u_animate: [ 1., 2., 1.0, 0.2 ];\n\n#pragma include \"sdf_2d\"\n#pragma include \"picking\"\n\nvoid main() {\n\n lowp float antialiasblur = v_data.z;\n float r = v_radius / (v_radius);\n\n float outer_df;\n float inner_df;\n // 'circle', 'triangle', 'square', 'pentagon', 'hexagon', 'octogon', 'hexagram', 'rhombus', 'vesica'\n \n outer_df = sdCircle(v_data.xy, 1.0);\n inner_df = sdCircle(v_data.xy, r);\n\n\n float opacity_t = smoothstep(0.0, antialiasblur, outer_df);\n\n float color_t = smoothstep(\n antialiasblur,\n 0.0,\n inner_df\n );\n float PI = 3.14159;\n float N_RINGS = 3.0;\n float FREQ = 1.0;\n\n gl_FragColor = v_color;\n\n float d = length(v_data.xy);\n if(d > 0.5) {\n discard;\n }\n float intensity = clamp(cos(d * PI), 0.0, 1.0) * clamp(cos(2.0 * PI * (d * 2.0 * u_animate.z - u_animate.y * u_time)), 0.0, 1.0);\n \n // \u6839\u636E\u53E0\u52A0\u6A21\u5F0F\u9009\u62E9\u6548\u679C\n if(u_additive > 0.0) {\n gl_FragColor *= intensity;\n // \u4F18\u5316\u6C34\u6CE2\u70B9 blend additive \u6A21\u5F0F\u4E0B\u6709\u7684\u62FE\u53D6\u6548\u679C \n gl_FragColor = filterColorAlpha(gl_FragColor, gl_FragColor.a);\n } else {\n gl_FragColor = vec4(gl_FragColor.xyz, gl_FragColor.a * intensity);\n gl_FragColor = filterColor(gl_FragColor);\n }\n}\n"; // static pointLayer shader - not support animate
|
|
41
|
-
|
|
42
25
|
/* babel-plugin-inline-import '../shaders/fill_frag.glsl' */
|
|
43
26
|
var pointFillFrag = "uniform float u_additive;\nuniform float u_stroke_opacity : 1;\nuniform float u_stroke_width : 2;\n\nvarying vec4 v_data;\nvarying vec4 v_color;\nvarying float v_radius;\nvarying vec4 v_stroke;\n\n\n#pragma include \"sdf_2d\"\n#pragma include \"picking\"\n\n\nvoid main() {\n int shape = int(floor(v_data.w + 0.5));\n lowp float antialiasblur = v_data.z;\n float r = v_radius / (v_radius + u_stroke_width);\n\n float outer_df;\n float inner_df;\n // 'circle', 'triangle', 'square', 'pentagon', 'hexagon', 'octogon', 'hexagram', 'rhombus', 'vesica'\n if (shape == 0) {\n outer_df = sdCircle(v_data.xy, 1.0);\n inner_df = sdCircle(v_data.xy, r);\n } else if (shape == 1) {\n outer_df = sdEquilateralTriangle(1.1 * v_data.xy);\n inner_df = sdEquilateralTriangle(1.1 / r * v_data.xy);\n } else if (shape == 2) {\n outer_df = sdBox(v_data.xy, vec2(1.));\n inner_df = sdBox(v_data.xy, vec2(r));\n } else if (shape == 3) {\n outer_df = sdPentagon(v_data.xy, 0.8);\n inner_df = sdPentagon(v_data.xy, r * 0.8);\n } else if (shape == 4) {\n outer_df = sdHexagon(v_data.xy, 0.8);\n inner_df = sdHexagon(v_data.xy, r * 0.8);\n } else if (shape == 5) {\n outer_df = sdOctogon(v_data.xy, 1.0);\n inner_df = sdOctogon(v_data.xy, r);\n } else if (shape == 6) {\n outer_df = sdHexagram(v_data.xy, 0.52);\n inner_df = sdHexagram(v_data.xy, r * 0.52);\n } else if (shape == 7) {\n outer_df = sdRhombus(v_data.xy, vec2(1.0));\n inner_df = sdRhombus(v_data.xy, vec2(r));\n } else if (shape == 8) {\n outer_df = sdVesica(v_data.xy, 1.1, 0.8);\n inner_df = sdVesica(v_data.xy, r * 1.1, r * 0.8);\n }\n\n float opacity_t = smoothstep(0.0, antialiasblur, outer_df);\n\n float color_t = u_stroke_width < 0.01 ? 0.0 : smoothstep(\n antialiasblur,\n 0.0,\n inner_df\n );\n\n if(u_stroke_width < 0.01) {\n gl_FragColor = v_color;\n } else {\n gl_FragColor = mix(v_color, v_stroke * u_stroke_opacity, color_t);\n }\n\n if(u_additive > 0.0) {\n gl_FragColor *= opacity_t;\n gl_FragColor = filterColorAlpha(gl_FragColor, gl_FragColor.a);\n } else {\n gl_FragColor.a *= opacity_t;\n gl_FragColor = filterColor(gl_FragColor);\n }\n // \u4F5C\u4E3A mask \u6A21\u677F\u65F6\u9700\u8981\u4E22\u5F03\u900F\u660E\u7684\u50CF\u7D20\n if(gl_FragColor.a < 0.01) {\n discard;\n } \n}\n";
|
|
44
|
-
|
|
45
27
|
/* babel-plugin-inline-import '../shaders/fill_vert.glsl' */
|
|
46
28
|
var pointFillVert = "attribute vec4 a_Color;\nattribute vec3 a_Position;\nattribute vec3 a_Extrude;\nattribute float a_Size;\nattribute float a_Shape;\n\nuniform mat4 u_ModelMatrix;\nuniform mat4 u_Mvp;\nuniform int u_size_unit;\n\nvarying vec4 v_data;\nvarying vec4 v_color;\nvarying float v_radius;\nvarying vec4 v_stroke;\n\n// uniform float u_opacity : 1;\nuniform float u_stroke_width: 2;\nuniform vec3 u_blur_height_fixed: [0, 0, 0];\n\n\n#pragma include \"projection\"\n#pragma include \"picking\"\n\n\nvoid main() {\n // \u900F\u660E\u5EA6\u8BA1\u7B97\n v_stroke = stroke; \n vec3 extrude = a_Extrude;\n float shape_type = a_Shape;\n /*\n * setPickingSize \u8BBE\u7F6E\u62FE\u53D6\u5927\u5C0F\n * u_meter2coord \u5728\u7B49\u9762\u79EF\u5927\u5C0F\u7684\u65F6\u5019\u8BBE\u7F6E\u5355\u4F4D\n */\n float newSize = setPickingSize(a_Size);\n // float newSize = setPickingSize(a_Size) * 0.00001038445708445579;\n\n\n\n // unpack color(vec2)\n v_color = vec4(a_Color.xyz, a_Color.w * opacity);\n\n if(u_size_unit == 1) {\n newSize = newSize * u_PixelsPerMeter.z;\n }\n\n v_radius = newSize;\n\n // anti-alias\n // float antialiased_blur = -max(u_blur, antialiasblur);\n float antialiasblur = -max(2.0 / u_DevicePixelRatio / newSize, u_blur_height_fixed.x);\n\n vec2 offset = (extrude.xy * (newSize + u_stroke_width) + u_offsets);\n vec3 aPosition = a_Position;\n\n offset = project_pixel(offset);\n \n // TODP: /abs(extrude.x) \u662F\u4E3A\u4E86\u517C\u5BB9\u5730\u7403\u6A21\u5F0F\n v_data = vec4(extrude.x/abs(extrude.x), extrude.y/abs(extrude.y), antialiasblur,shape_type);\n\n\n // vec4 project_pos = project_position(vec4(a_Position.xy, 0.0, 1.0));\n vec4 project_pos = project_position(vec4(aPosition.xy, 0.0, 1.0));\n // gl_Position = project_common_position_to_clipspace(vec4(project_pos.xy + offset, project_pixel(setPickingOrder(0.0)), 1.0));\n\n float raisingHeight = u_blur_height_fixed.y;\n\n if(u_blur_height_fixed.z < 1.0) { // false\n raisingHeight = project_pixel(u_blur_height_fixed.y);\n } else {\n if(u_CoordinateSystem == COORDINATE_SYSTEM_LNGLAT || u_CoordinateSystem == COORDINATE_SYSTEM_LNGLAT_OFFSET) {\n float mapboxZoomScale = 4.0/pow(2.0, 21.0 - u_Zoom);\n raisingHeight = u_blur_height_fixed.y * mapboxZoomScale;\n }\n }\n \n\n if(u_CoordinateSystem == COORDINATE_SYSTEM_P20_2) { // gaode2.x\n gl_Position = u_Mvp * vec4(project_pos.xy + offset, raisingHeight, 1.0);\n } else {\n gl_Position = project_common_position_to_clipspace(vec4(project_pos.xy + offset, raisingHeight, 1.0));\n }\n \n // gl_Position = project_common_position_to_clipspace(vec4(project_pos.xy + offset, 0.0, 1.0));\n\n setPickingColor(a_PickingColor);\n}\n";
|
|
47
|
-
|
|
48
29
|
var FillModel = /*#__PURE__*/function (_BaseModel) {
|
|
49
30
|
(0, _inherits2.default)(FillModel, _BaseModel);
|
|
50
|
-
|
|
51
31
|
var _super = _createSuper(FillModel);
|
|
52
|
-
|
|
53
32
|
function FillModel() {
|
|
54
33
|
(0, _classCallCheck2.default)(this, FillModel);
|
|
55
34
|
return _super.apply(this, arguments);
|
|
56
35
|
}
|
|
57
|
-
|
|
58
36
|
(0, _createClass2.default)(FillModel, [{
|
|
59
37
|
key: "getUninforms",
|
|
60
38
|
value: function getUninforms() {
|
|
61
39
|
var _ref = this.layer.getLayerConfig(),
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
40
|
+
_ref$strokeOpacity = _ref.strokeOpacity,
|
|
41
|
+
strokeOpacity = _ref$strokeOpacity === void 0 ? 1 : _ref$strokeOpacity,
|
|
42
|
+
_ref$strokeWidth = _ref.strokeWidth,
|
|
43
|
+
strokeWidth = _ref$strokeWidth === void 0 ? 0 : _ref$strokeWidth,
|
|
44
|
+
blend = _ref.blend,
|
|
45
|
+
_ref$blur = _ref.blur,
|
|
46
|
+
blur = _ref$blur === void 0 ? 0 : _ref$blur,
|
|
47
|
+
_ref$raisingHeight = _ref.raisingHeight,
|
|
48
|
+
raisingHeight = _ref$raisingHeight === void 0 ? 0 : _ref$raisingHeight,
|
|
49
|
+
_ref$heightfixed = _ref.heightfixed,
|
|
50
|
+
heightfixed = _ref$heightfixed === void 0 ? false : _ref$heightfixed,
|
|
51
|
+
_ref$unit = _ref.unit,
|
|
52
|
+
unit = _ref$unit === void 0 ? 'pixel' : _ref$unit;
|
|
76
53
|
return (0, _objectSpread2.default)({
|
|
77
54
|
u_blur_height_fixed: [blur, Number(raisingHeight), Number(heightfixed)],
|
|
78
55
|
u_additive: blend === 'additive' ? 1.0 : 0.0,
|
|
@@ -85,11 +62,10 @@ var FillModel = /*#__PURE__*/function (_BaseModel) {
|
|
|
85
62
|
key: "getAnimateUniforms",
|
|
86
63
|
value: function getAnimateUniforms() {
|
|
87
64
|
var _ref2 = this.layer.getLayerConfig(),
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
65
|
+
_ref2$animateOption = _ref2.animateOption,
|
|
66
|
+
animateOption = _ref2$animateOption === void 0 ? {
|
|
67
|
+
enable: false
|
|
68
|
+
} : _ref2$animateOption;
|
|
93
69
|
return {
|
|
94
70
|
u_animate: this.animateOption2Array(animateOption),
|
|
95
71
|
u_time: this.layer.getLayerAnimateTime()
|
|
@@ -105,23 +81,18 @@ var FillModel = /*#__PURE__*/function (_BaseModel) {
|
|
|
105
81
|
value: function () {
|
|
106
82
|
var _initModels = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee() {
|
|
107
83
|
return _regenerator.default.wrap(function _callee$(_context) {
|
|
108
|
-
while (1) {
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
case "end":
|
|
115
|
-
return _context.stop();
|
|
116
|
-
}
|
|
84
|
+
while (1) switch (_context.prev = _context.next) {
|
|
85
|
+
case 0:
|
|
86
|
+
return _context.abrupt("return", this.buildModels());
|
|
87
|
+
case 1:
|
|
88
|
+
case "end":
|
|
89
|
+
return _context.stop();
|
|
117
90
|
}
|
|
118
91
|
}, _callee, this);
|
|
119
92
|
}));
|
|
120
|
-
|
|
121
93
|
function initModels() {
|
|
122
94
|
return _initModels.apply(this, arguments);
|
|
123
95
|
}
|
|
124
|
-
|
|
125
96
|
return initModels;
|
|
126
97
|
}()
|
|
127
98
|
}, {
|
|
@@ -129,51 +100,43 @@ var FillModel = /*#__PURE__*/function (_BaseModel) {
|
|
|
129
100
|
value: function () {
|
|
130
101
|
var _buildModels = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee2() {
|
|
131
102
|
var _ref3, _ref3$animateOption, animateOption, _this$getShaders, frag, vert, type, model;
|
|
132
|
-
|
|
133
103
|
return _regenerator.default.wrap(function _callee2$(_context2) {
|
|
134
|
-
while (1) {
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
104
|
+
while (1) switch (_context2.prev = _context2.next) {
|
|
105
|
+
case 0:
|
|
106
|
+
_ref3 = this.layer.getLayerConfig(), _ref3$animateOption = _ref3.animateOption, animateOption = _ref3$animateOption === void 0 ? {
|
|
107
|
+
enable: false
|
|
108
|
+
} : _ref3$animateOption;
|
|
109
|
+
_this$getShaders = this.getShaders(animateOption), frag = _this$getShaders.frag, vert = _this$getShaders.vert, type = _this$getShaders.type;
|
|
110
|
+
this.layer.triangulation = _l7Utils.PointFillTriangulation;
|
|
111
|
+
_context2.next = 5;
|
|
112
|
+
return this.layer.buildLayerModel({
|
|
113
|
+
moduleName: type,
|
|
114
|
+
vertexShader: vert,
|
|
115
|
+
fragmentShader: frag,
|
|
116
|
+
inject: this.getInject(),
|
|
117
|
+
triangulation: _l7Utils.PointFillTriangulation,
|
|
118
|
+
depth: {
|
|
138
119
|
enable: false
|
|
139
|
-
}
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
inject: this.getInject(),
|
|
148
|
-
triangulation: _l7Utils.PointFillTriangulation,
|
|
149
|
-
depth: {
|
|
150
|
-
enable: false
|
|
151
|
-
}
|
|
152
|
-
});
|
|
153
|
-
|
|
154
|
-
case 5:
|
|
155
|
-
model = _context2.sent;
|
|
156
|
-
return _context2.abrupt("return", [model]);
|
|
157
|
-
|
|
158
|
-
case 7:
|
|
159
|
-
case "end":
|
|
160
|
-
return _context2.stop();
|
|
161
|
-
}
|
|
120
|
+
}
|
|
121
|
+
});
|
|
122
|
+
case 5:
|
|
123
|
+
model = _context2.sent;
|
|
124
|
+
return _context2.abrupt("return", [model]);
|
|
125
|
+
case 7:
|
|
126
|
+
case "end":
|
|
127
|
+
return _context2.stop();
|
|
162
128
|
}
|
|
163
129
|
}, _callee2, this);
|
|
164
130
|
}));
|
|
165
|
-
|
|
166
131
|
function buildModels() {
|
|
167
132
|
return _buildModels.apply(this, arguments);
|
|
168
133
|
}
|
|
169
|
-
|
|
170
134
|
return buildModels;
|
|
171
135
|
}()
|
|
172
136
|
/**
|
|
173
137
|
* 根据 animateOption 的值返回对应的 shader 代码
|
|
174
138
|
* @returns
|
|
175
139
|
*/
|
|
176
|
-
|
|
177
140
|
}, {
|
|
178
141
|
key: "getShaders",
|
|
179
142
|
value: function getShaders(animateOption) {
|
|
@@ -185,7 +148,6 @@ var FillModel = /*#__PURE__*/function (_BaseModel) {
|
|
|
185
148
|
vert: pointFillVert,
|
|
186
149
|
type: 'pointWave'
|
|
187
150
|
};
|
|
188
|
-
|
|
189
151
|
default:
|
|
190
152
|
return {
|
|
191
153
|
frag: waveFillFrag,
|
|
@@ -200,8 +162,9 @@ var FillModel = /*#__PURE__*/function (_BaseModel) {
|
|
|
200
162
|
type: 'pointFill'
|
|
201
163
|
};
|
|
202
164
|
}
|
|
203
|
-
}
|
|
165
|
+
}
|
|
204
166
|
|
|
167
|
+
// overwrite baseModel func
|
|
205
168
|
}, {
|
|
206
169
|
key: "animateOption2Array",
|
|
207
170
|
value: function animateOption2Array(option) {
|
|
@@ -230,8 +193,9 @@ var FillModel = /*#__PURE__*/function (_BaseModel) {
|
|
|
230
193
|
return [extrude[extrudeIndex], extrude[extrudeIndex + 1], extrude[extrudeIndex + 2]];
|
|
231
194
|
}
|
|
232
195
|
}
|
|
233
|
-
});
|
|
196
|
+
});
|
|
234
197
|
|
|
198
|
+
// point layer size;
|
|
235
199
|
this.styleAttributeService.registerStyleAttribute({
|
|
236
200
|
name: 'size',
|
|
237
201
|
type: _l7Core.AttributeType.Attribute,
|
|
@@ -246,12 +210,13 @@ var FillModel = /*#__PURE__*/function (_BaseModel) {
|
|
|
246
210
|
size: 1,
|
|
247
211
|
update: function update(feature) {
|
|
248
212
|
var _feature$size = feature.size,
|
|
249
|
-
|
|
213
|
+
size = _feature$size === void 0 ? 5 : _feature$size;
|
|
250
214
|
return Array.isArray(size) ? [size[0]] : [size];
|
|
251
215
|
}
|
|
252
216
|
}
|
|
253
|
-
});
|
|
217
|
+
});
|
|
254
218
|
|
|
219
|
+
// point layer shape;
|
|
255
220
|
this.styleAttributeService.registerStyleAttribute({
|
|
256
221
|
name: 'shape',
|
|
257
222
|
type: _l7Core.AttributeType.Attribute,
|
|
@@ -266,7 +231,7 @@ var FillModel = /*#__PURE__*/function (_BaseModel) {
|
|
|
266
231
|
size: 1,
|
|
267
232
|
update: function update(feature) {
|
|
268
233
|
var _feature$shape = feature.shape,
|
|
269
|
-
|
|
234
|
+
shape = _feature$shape === void 0 ? 2 : _feature$shape;
|
|
270
235
|
var shapeIndex = shape2d.indexOf(shape);
|
|
271
236
|
return [shapeIndex];
|
|
272
237
|
}
|
|
@@ -276,5 +241,4 @@ var FillModel = /*#__PURE__*/function (_BaseModel) {
|
|
|
276
241
|
}]);
|
|
277
242
|
return FillModel;
|
|
278
243
|
}(_BaseModel2.default);
|
|
279
|
-
|
|
280
244
|
exports.default = FillModel;
|