@evergis/react 4.0.66 → 4.0.67
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/LICENSE +21 -21
- package/README.md +7 -7
- package/dist/index.js +2574 -2574
- package/dist/react.esm.js +2574 -2574
- package/dist/types/styling.d.ts +12 -0
- package/package.json +2 -3
package/dist/types/styling.d.ts
CHANGED
|
@@ -29,11 +29,23 @@ export interface ClientStyleIcon {
|
|
|
29
29
|
/** Pixel ratio для retina экранов (1 или 2) */
|
|
30
30
|
pixelRatio?: number;
|
|
31
31
|
}
|
|
32
|
+
export interface ClientStyleModelRotation {
|
|
33
|
+
x?: string;
|
|
34
|
+
y?: string;
|
|
35
|
+
z?: string;
|
|
36
|
+
}
|
|
37
|
+
export interface ClientStyleModel {
|
|
38
|
+
path?: string;
|
|
39
|
+
size?: string;
|
|
40
|
+
rotation?: ClientStyleModelRotation;
|
|
41
|
+
axesHelper?: boolean;
|
|
42
|
+
}
|
|
32
43
|
export interface ClientStyle {
|
|
33
44
|
settings?: ClientStyleSettings;
|
|
34
45
|
items: ClientStyleItem[];
|
|
35
46
|
/** Пользовательские иконки для symbol layer */
|
|
36
47
|
icons?: ClientStyleIcon[];
|
|
48
|
+
models?: ClientStyleModel[];
|
|
37
49
|
minzoom?: number;
|
|
38
50
|
maxzoom?: number;
|
|
39
51
|
}
|
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "4.0.
|
|
2
|
+
"version": "4.0.67",
|
|
3
3
|
"name": "@evergis/react",
|
|
4
4
|
"author": "Everpoint",
|
|
5
5
|
"license": "MIT",
|
|
@@ -86,6 +86,5 @@
|
|
|
86
86
|
"swiper": "^8.3.2",
|
|
87
87
|
"uuid": "^13.0.0",
|
|
88
88
|
"wkt": "^0.1.1"
|
|
89
|
-
}
|
|
90
|
-
"gitHead": "54bfff51eba9538dde5feb05d0817ed0f04d3c07"
|
|
89
|
+
}
|
|
91
90
|
}
|