@antv/l7-layers 2.9.22 → 2.9.25-alpha.0
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/models/plane.d.ts +1 -0
- package/es/citybuliding/building.js +1 -1
- package/es/core/BaseLayer.js +10 -3
- package/es/core/interface.d.ts +26 -48
- package/es/core/interface.js +3 -0
- package/es/core/schema.d.ts +3 -3
- package/es/core/triangulation.d.ts +4 -3
- package/es/core/triangulation.js +54 -39
- package/es/image/models/image.js +7 -1
- package/es/line/index.js +4 -1
- package/es/line/models/arc.js +1 -1
- package/es/line/models/simpleLine.js +1 -1
- package/es/line/shaders/line_arc_vert.glsl +5 -3
- package/es/line/shaders/simple/simpleline_vert.glsl +1 -0
- package/es/plugins/FeatureScalePlugin.js +0 -1
- package/es/point/index.js +3 -1
- package/es/point/models/fill.js +5 -2
- package/es/point/models/fillmage.js +9 -3
- package/es/point/models/image.js +8 -2
- package/es/point/models/radar.js +2 -3
- package/es/point/models/tile.js +1 -1
- package/es/point/shaders/fill_vert.glsl +13 -6
- package/es/point/shaders/image/fillImage_vert.glsl +13 -5
- package/es/point/shaders/image_vert.glsl +17 -8
- package/es/polygon/index.js +4 -1
- package/es/raster/index.js +3 -1
- package/es/tile/manager/tileLayerManager.d.ts +3 -2
- package/es/tile/manager/tileLayerManager.js +5 -2
- package/es/tile/models/tileModel.js +4 -3
- package/es/tile/tileFactory/base.d.ts +1 -1
- package/es/tile/tileFactory/base.js +32 -5
- package/es/tile/tileFactory/vectorLayer.d.ts +3 -1
- package/es/tile/tileFactory/vectorLayer.js +22 -1
- package/es/tile/tileLayer/baseTileLayer.d.ts +1 -1
- package/es/tile/tileLayer/baseTileLayer.js +3 -2
- package/es/tile/utils.d.ts +2 -0
- package/es/tile/utils.js +5 -1
- package/lib/citybuliding/building.js +1 -1
- package/lib/core/BaseLayer.js +8 -3
- package/lib/core/triangulation.js +48 -31
- package/lib/image/models/image.js +6 -1
- package/lib/line/index.js +3 -1
- package/lib/line/shaders/line_arc_vert.glsl +5 -3
- package/lib/line/shaders/simple/simpleline_vert.glsl +1 -0
- package/lib/plugins/FeatureScalePlugin.js +0 -1
- package/lib/point/index.js +3 -1
- package/lib/point/models/fill.js +3 -1
- package/lib/point/models/fillmage.js +6 -2
- package/lib/point/models/image.js +5 -1
- package/lib/point/models/radar.js +2 -3
- package/lib/point/models/tile.js +1 -1
- package/lib/point/shaders/fill_vert.glsl +13 -6
- package/lib/point/shaders/image/fillImage_vert.glsl +13 -5
- package/lib/point/shaders/image_vert.glsl +17 -8
- package/lib/polygon/index.js +3 -1
- package/lib/raster/index.js +2 -1
- package/lib/tile/manager/tileLayerManager.js +5 -2
- package/lib/tile/models/tileModel.js +4 -3
- package/lib/tile/tileFactory/base.js +22 -4
- package/lib/tile/tileFactory/vectorLayer.js +16 -1
- package/lib/tile/tileLayer/baseTileLayer.js +3 -2
- package/lib/tile/utils.js +11 -3
- package/package.json +7 -6
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@antv/l7-layers",
|
|
3
|
-
"version": "2.9.
|
|
3
|
+
"version": "2.9.25-alpha.0",
|
|
4
4
|
"description": "L7's collection of built-in layers",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"module": "es/index.js",
|
|
@@ -27,14 +27,15 @@
|
|
|
27
27
|
"license": "ISC",
|
|
28
28
|
"dependencies": {
|
|
29
29
|
"@antv/async-hook": "^2.1.0",
|
|
30
|
-
"@antv/l7-core": "2.9.
|
|
31
|
-
"@antv/l7-maps": "2.9.
|
|
32
|
-
"@antv/l7-source": "2.9.
|
|
33
|
-
"@antv/l7-utils": "2.9.
|
|
30
|
+
"@antv/l7-core": "2.9.25-alpha.0",
|
|
31
|
+
"@antv/l7-maps": "2.9.25-alpha.0",
|
|
32
|
+
"@antv/l7-source": "2.9.25-alpha.0",
|
|
33
|
+
"@antv/l7-utils": "2.9.25-alpha.0",
|
|
34
34
|
"@babel/runtime": "^7.7.7",
|
|
35
35
|
"@mapbox/martini": "^0.2.0",
|
|
36
36
|
"@turf/helpers": "^6.1.4",
|
|
37
37
|
"@turf/meta": "^6.0.2",
|
|
38
|
+
"@turf/polygon-to-line": "^6.5.0",
|
|
38
39
|
"@turf/union": "^6.5.0",
|
|
39
40
|
"d3-array": "1",
|
|
40
41
|
"d3-color": "^1.4.0",
|
|
@@ -60,7 +61,7 @@
|
|
|
60
61
|
"@types/gl-matrix": "^2.4.5",
|
|
61
62
|
"@types/lodash": "^4.14.138"
|
|
62
63
|
},
|
|
63
|
-
"gitHead": "
|
|
64
|
+
"gitHead": "5216ad73535dbd3c4188dd9717952db3dfcb4f71",
|
|
64
65
|
"publishConfig": {
|
|
65
66
|
"access": "public"
|
|
66
67
|
}
|