@spuermomonga/vue3-bmapgl 0.0.8 → 0.0.10
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/dist/index.js +212 -15
- package/dist/index.prod.js +1 -1
- package/es/components.mjs +1 -0
- package/es/components.mjs.map +1 -1
- package/es/index.mjs +1 -0
- package/es/index.mjs.map +1 -1
- package/es/layer/tile/index.d.ts +2 -0
- package/es/layer/tile/index.mjs +1 -0
- package/es/layer/tile/index.mjs.map +1 -1
- package/es/layer/tile/src/tile-props.d.ts +60 -0
- package/es/layer/tile/src/tile-props.mjs +52 -0
- package/es/layer/tile/src/tile-props.mjs.map +1 -0
- package/es/layer/tile/src/tile.d.ts +117 -1
- package/es/layer/tile/src/tile.mjs +125 -3
- package/es/layer/tile/src/tile.mjs.map +1 -1
- package/es/layer/xyz/src/xyz-props.d.ts +7 -1
- package/es/layer/xyz/src/xyz-props.mjs.map +1 -1
- package/es/layer/xyz/src/xyz.d.ts +3 -3
- package/es/layer/xyz/src/xyz.mjs +6 -1
- package/es/layer/xyz/src/xyz.mjs.map +1 -1
- package/es/map/src/map-props.d.ts +28 -7
- package/es/map/src/map-props.mjs +28 -7
- package/es/map/src/map-props.mjs.map +1 -1
- package/es/map/src/map.d.ts +56 -14
- package/lib/components.js +2 -0
- package/lib/components.js.map +1 -1
- package/lib/index.js +2 -0
- package/lib/index.js.map +1 -1
- package/lib/layer/tile/index.d.ts +2 -0
- package/lib/layer/tile/index.js +2 -0
- package/lib/layer/tile/index.js.map +1 -1
- package/lib/layer/tile/src/tile-props.d.ts +60 -0
- package/lib/layer/tile/src/tile-props.js +54 -0
- package/lib/layer/tile/src/tile-props.js.map +1 -0
- package/lib/layer/tile/src/tile.d.ts +117 -1
- package/lib/layer/tile/src/tile.js +124 -2
- package/lib/layer/tile/src/tile.js.map +1 -1
- package/lib/layer/xyz/src/xyz-props.d.ts +7 -1
- package/lib/layer/xyz/src/xyz-props.js.map +1 -1
- package/lib/layer/xyz/src/xyz.d.ts +3 -3
- package/lib/layer/xyz/src/xyz.js +6 -1
- package/lib/layer/xyz/src/xyz.js.map +1 -1
- package/lib/map/src/map-props.d.ts +28 -7
- package/lib/map/src/map-props.js +28 -7
- package/lib/map/src/map-props.js.map +1 -1
- package/lib/map/src/map.d.ts +56 -14
- package/package.json +1 -1
package/lib/map/src/map.d.ts
CHANGED
|
@@ -12,15 +12,36 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
12
12
|
readonly zoom: NumberConstructor;
|
|
13
13
|
readonly class: StringConstructor;
|
|
14
14
|
readonly contentClass: StringConstructor;
|
|
15
|
-
readonly enableScrollWheelZoom:
|
|
16
|
-
|
|
15
|
+
readonly enableScrollWheelZoom: {
|
|
16
|
+
readonly type: BooleanConstructor;
|
|
17
|
+
readonly default: undefined;
|
|
18
|
+
};
|
|
19
|
+
readonly enableDragging: {
|
|
20
|
+
readonly type: BooleanConstructor;
|
|
21
|
+
readonly default: undefined;
|
|
22
|
+
};
|
|
17
23
|
readonly tilt: NumberConstructor;
|
|
18
|
-
readonly enableTilt:
|
|
24
|
+
readonly enableTilt: {
|
|
25
|
+
readonly type: BooleanConstructor;
|
|
26
|
+
readonly default: undefined;
|
|
27
|
+
};
|
|
19
28
|
readonly mapType: import("vue").PropType<BMapGL.MapTypeId>;
|
|
20
|
-
readonly enableAutoResize:
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
29
|
+
readonly enableAutoResize: {
|
|
30
|
+
readonly type: BooleanConstructor;
|
|
31
|
+
readonly default: undefined;
|
|
32
|
+
};
|
|
33
|
+
readonly enableTiltGestures: {
|
|
34
|
+
readonly type: BooleanConstructor;
|
|
35
|
+
readonly default: undefined;
|
|
36
|
+
};
|
|
37
|
+
readonly enableRotate: {
|
|
38
|
+
readonly type: BooleanConstructor;
|
|
39
|
+
readonly default: undefined;
|
|
40
|
+
};
|
|
41
|
+
readonly enableRotateGestures: {
|
|
42
|
+
readonly type: BooleanConstructor;
|
|
43
|
+
readonly default: undefined;
|
|
44
|
+
};
|
|
24
45
|
readonly displayOptions: import("vue").PropType<BMapGL.displayOptions>;
|
|
25
46
|
readonly onInitd: import("vue").PropType<import("./interface").onInitd>;
|
|
26
47
|
}>, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
@@ -31,15 +52,36 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
31
52
|
readonly zoom: NumberConstructor;
|
|
32
53
|
readonly class: StringConstructor;
|
|
33
54
|
readonly contentClass: StringConstructor;
|
|
34
|
-
readonly enableScrollWheelZoom:
|
|
35
|
-
|
|
55
|
+
readonly enableScrollWheelZoom: {
|
|
56
|
+
readonly type: BooleanConstructor;
|
|
57
|
+
readonly default: undefined;
|
|
58
|
+
};
|
|
59
|
+
readonly enableDragging: {
|
|
60
|
+
readonly type: BooleanConstructor;
|
|
61
|
+
readonly default: undefined;
|
|
62
|
+
};
|
|
36
63
|
readonly tilt: NumberConstructor;
|
|
37
|
-
readonly enableTilt:
|
|
64
|
+
readonly enableTilt: {
|
|
65
|
+
readonly type: BooleanConstructor;
|
|
66
|
+
readonly default: undefined;
|
|
67
|
+
};
|
|
38
68
|
readonly mapType: import("vue").PropType<BMapGL.MapTypeId>;
|
|
39
|
-
readonly enableAutoResize:
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
69
|
+
readonly enableAutoResize: {
|
|
70
|
+
readonly type: BooleanConstructor;
|
|
71
|
+
readonly default: undefined;
|
|
72
|
+
};
|
|
73
|
+
readonly enableTiltGestures: {
|
|
74
|
+
readonly type: BooleanConstructor;
|
|
75
|
+
readonly default: undefined;
|
|
76
|
+
};
|
|
77
|
+
readonly enableRotate: {
|
|
78
|
+
readonly type: BooleanConstructor;
|
|
79
|
+
readonly default: undefined;
|
|
80
|
+
};
|
|
81
|
+
readonly enableRotateGestures: {
|
|
82
|
+
readonly type: BooleanConstructor;
|
|
83
|
+
readonly default: undefined;
|
|
84
|
+
};
|
|
43
85
|
readonly displayOptions: import("vue").PropType<BMapGL.displayOptions>;
|
|
44
86
|
readonly onInitd: import("vue").PropType<import("./interface").onInitd>;
|
|
45
87
|
}>> & Readonly<{}>, {
|