@antv/l7-layers 2.9.33 → 2.9.34

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/glsl.d.ts ADDED
@@ -0,0 +1,5 @@
1
+ declare module '*.glsl' {
2
+ const content: string;
3
+ // @ts-ignore
4
+ export default content;
5
+ }
@@ -32,7 +32,7 @@ export default class TileFactory implements ITileFactory {
32
32
  updateStyle(styles: ITileStyles): string;
33
33
  getDefautStyleAttributeField(layer: ILayer, type: string): string | string[] | 1;
34
34
  setStyleAttributeField(layer: ILayer, type: ScaleAttributeType, value: IScaleValue | undefined | string | string[]): ILayer | undefined;
35
- protected parseScaleValue(value: IScaleValue | string, type: string): (string | number | unknown[])[] | (import("@antv/l7-core").StyleAttributeField | ((...args: any[]) => [] | undefined))[];
35
+ protected parseScaleValue(value: IScaleValue | string, type: string): (string | number | any[])[] | (import("@antv/l7-core").StyleAttributeField | ((...args: any[]) => [] | undefined))[];
36
36
  protected getTile(lng: number, lat: number): Tile;
37
37
  protected emitEvent(layers: ILayer[], isVector?: boolean): void;
38
38
  protected getCombineFeature(features: IParseDataItem[]): any;
package/lib/glsl.d.ts ADDED
@@ -0,0 +1,5 @@
1
+ declare module '*.glsl' {
2
+ const content: string;
3
+ // @ts-ignore
4
+ export default content;
5
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@antv/l7-layers",
3
- "version": "2.9.33",
3
+ "version": "2.9.34",
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.2",
30
- "@antv/l7-core": "2.9.33",
31
- "@antv/l7-maps": "2.9.33",
32
- "@antv/l7-source": "2.9.33",
33
- "@antv/l7-utils": "2.9.33",
30
+ "@antv/l7-core": "2.9.34",
31
+ "@antv/l7-maps": "2.9.34",
32
+ "@antv/l7-source": "2.9.34",
33
+ "@antv/l7-utils": "2.9.34",
34
34
  "@babel/runtime": "^7.7.7",
35
35
  "@mapbox/martini": "^0.2.0",
36
36
  "@turf/clone": "^6.5.0",
@@ -61,7 +61,7 @@
61
61
  "@types/gl-matrix": "^2.4.5",
62
62
  "@types/lodash": "^4.14.138"
63
63
  },
64
- "gitHead": "87c41d6197d0cb14993201968be0378af6429164",
64
+ "gitHead": "5e0fdaf978907383aedd4ba77a8508e7b3b87671",
65
65
  "publishConfig": {
66
66
  "access": "public"
67
67
  }