@antv/l7-layers 2.18.0 → 2.18.3

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.
Files changed (44) hide show
  1. package/es/core/BaseModel.d.ts +0 -20
  2. package/es/core/BaseModel.js +4 -2
  3. package/es/core/CommonStyleAttribute.js +20 -0
  4. package/es/core/interface.d.ts +1 -0
  5. package/es/plugins/FeatureScalePlugin.js +2 -1
  6. package/es/point/index.js +5 -3
  7. package/es/point/models/{simplePoint.js → billboard_point.js} +2 -2
  8. package/es/point/models/fill.js +1 -1
  9. package/es/point/models/fillmage.js +8 -37
  10. package/es/point/models/image.js +7 -7
  11. package/es/point/models/index.js +1 -1
  12. package/es/point/models/normal.js +4 -4
  13. package/es/point/models/text.js +1 -19
  14. package/es/point/shaders/fill_vert.glsl +3 -4
  15. package/es/point/shaders/image/fillImage_frag.glsl +2 -1
  16. package/es/point/shaders/image/fillImage_vert.glsl +9 -11
  17. package/es/point/shaders/image_frag.glsl +2 -4
  18. package/es/point/shaders/image_vert.glsl +3 -4
  19. package/es/point/shaders/normal_vert.glsl +1 -2
  20. package/es/point/shaders/text_vert.glsl +4 -6
  21. package/lib/core/BaseModel.js +4 -2
  22. package/lib/core/CommonStyleAttribute.js +20 -0
  23. package/lib/plugins/FeatureScalePlugin.js +2 -1
  24. package/lib/point/index.js +5 -3
  25. package/lib/point/models/{simplePoint.js → billboard_point.js} +2 -2
  26. package/lib/point/models/fill.js +1 -1
  27. package/lib/point/models/fillmage.js +8 -37
  28. package/lib/point/models/image.js +7 -7
  29. package/lib/point/models/index.js +2 -2
  30. package/lib/point/models/normal.js +4 -4
  31. package/lib/point/models/text.js +1 -19
  32. package/lib/point/shaders/fill_vert.glsl +3 -4
  33. package/lib/point/shaders/image/fillImage_frag.glsl +2 -1
  34. package/lib/point/shaders/image/fillImage_vert.glsl +9 -11
  35. package/lib/point/shaders/image_frag.glsl +2 -4
  36. package/lib/point/shaders/image_vert.glsl +3 -4
  37. package/lib/point/shaders/normal_vert.glsl +1 -2
  38. package/lib/point/shaders/text_vert.glsl +4 -6
  39. package/package.json +7 -7
  40. /package/es/point/models/{simplePoint.d.ts → billboard_point.d.ts} +0 -0
  41. /package/es/point/shaders/{simplePoint_frag.glsl → billboard_point_frag.glsl} +0 -0
  42. /package/es/point/shaders/{simplePoint_vert.glsl → billboard_point_vert.glsl} +0 -0
  43. /package/lib/point/shaders/{simplePoint_frag.glsl → billboard_point_frag.glsl} +0 -0
  44. /package/lib/point/shaders/{simplePoint_vert.glsl → billboard_point_vert.glsl} +0 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@antv/l7-layers",
3
- "version": "2.18.0",
3
+ "version": "2.18.3",
4
4
  "description": "L7's collection of built-in layers",
5
5
  "main": "lib/index.js",
6
6
  "module": "es/index.js",
@@ -27,10 +27,10 @@
27
27
  "license": "ISC",
28
28
  "dependencies": {
29
29
  "@antv/async-hook": "^2.2.9",
30
- "@antv/l7-core": "2.18.0",
31
- "@antv/l7-maps": "2.18.0",
32
- "@antv/l7-source": "2.18.0",
33
- "@antv/l7-utils": "2.18.0",
30
+ "@antv/l7-core": "2.18.3",
31
+ "@antv/l7-maps": "2.18.3",
32
+ "@antv/l7-source": "2.18.3",
33
+ "@antv/l7-utils": "2.18.3",
34
34
  "@babel/runtime": "^7.7.7",
35
35
  "@mapbox/martini": "^0.2.0",
36
36
  "@turf/clone": "^6.5.0",
@@ -52,7 +52,7 @@
52
52
  "reflect-metadata": "^0.1.13"
53
53
  },
54
54
  "devDependencies": {
55
- "@antv/l7-test-utils": "2.18.0",
55
+ "@antv/l7-test-utils": "2.18.3",
56
56
  "@types/d3-array": "^2.0.0",
57
57
  "@types/d3-color": "^1.2.2",
58
58
  "@types/d3-interpolate": "1.1.6",
@@ -61,7 +61,7 @@
61
61
  "@types/gl-matrix": "^2.4.5",
62
62
  "@types/lodash": "^4.14.138"
63
63
  },
64
- "gitHead": "578d1b5343a379d8a7a57ae0d5ae7a700a6589a6",
64
+ "gitHead": "882d6eaa2d503b4e50ad6d94b123f8f892c0f84c",
65
65
  "publishConfig": {
66
66
  "access": "public"
67
67
  }