@spuermomonga/vue3-bmapgl 0.0.7 → 0.0.9
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 +36 -54
- package/dist/index.prod.js +1 -1
- package/es/_mixins/use-config.mjs +16 -16
- package/es/_mixins/use-config.mjs.map +1 -1
- package/es/layer/tile/src/tile-props.mjs +2 -0
- package/es/layer/tile/src/tile-props.mjs.map +1 -0
- package/es/layer/tile/src/tile.mjs +2 -2
- 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 +2 -2
- 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 +15 -38
- package/es/map/src/map-props.mjs +15 -38
- package/es/map/src/map-props.mjs.map +1 -1
- package/es/map/src/map.d.ts +30 -83
- package/lib/_mixins/use-config.js +16 -16
- package/lib/_mixins/use-config.js.map +1 -1
- package/lib/layer/tile/src/tile-props.js +3 -0
- package/lib/layer/tile/src/tile-props.js.map +1 -0
- package/lib/layer/tile/src/tile.js +1 -1
- 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 +2 -2
- 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 +15 -38
- package/lib/map/src/map-props.js +15 -38
- package/lib/map/src/map-props.js.map +1 -1
- package/lib/map/src/map.d.ts +30 -83
- package/package.json +1 -1
package/lib/map/src/map.d.ts
CHANGED
|
@@ -5,142 +5,89 @@ export interface MapSlots {
|
|
|
5
5
|
failed?: () => VNode[];
|
|
6
6
|
}
|
|
7
7
|
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
8
|
-
readonly maxZoom:
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
readonly
|
|
13
|
-
readonly type: NumberConstructor;
|
|
14
|
-
readonly default: 0;
|
|
15
|
-
};
|
|
16
|
-
readonly heading: {
|
|
17
|
-
readonly type: NumberConstructor;
|
|
18
|
-
readonly default: 0;
|
|
19
|
-
};
|
|
20
|
-
readonly center: {
|
|
21
|
-
readonly type: import("vue").PropType<BMapGL.Point | string | [number, number]>;
|
|
22
|
-
readonly default: readonly [116.403901, 39.915185];
|
|
23
|
-
};
|
|
24
|
-
readonly zoom: {
|
|
25
|
-
readonly type: NumberConstructor;
|
|
26
|
-
readonly default: 14;
|
|
27
|
-
};
|
|
8
|
+
readonly maxZoom: NumberConstructor;
|
|
9
|
+
readonly minZoom: NumberConstructor;
|
|
10
|
+
readonly heading: NumberConstructor;
|
|
11
|
+
readonly center: import("vue").PropType<BMapGL.Point | string | [number, number]>;
|
|
12
|
+
readonly zoom: NumberConstructor;
|
|
28
13
|
readonly class: StringConstructor;
|
|
29
14
|
readonly contentClass: StringConstructor;
|
|
30
15
|
readonly enableScrollWheelZoom: {
|
|
31
16
|
readonly type: BooleanConstructor;
|
|
32
|
-
readonly default:
|
|
17
|
+
readonly default: undefined;
|
|
33
18
|
};
|
|
34
19
|
readonly enableDragging: {
|
|
35
20
|
readonly type: BooleanConstructor;
|
|
36
|
-
readonly default:
|
|
37
|
-
};
|
|
38
|
-
readonly tilt: {
|
|
39
|
-
readonly type: NumberConstructor;
|
|
40
|
-
readonly default: 0;
|
|
21
|
+
readonly default: undefined;
|
|
41
22
|
};
|
|
23
|
+
readonly tilt: NumberConstructor;
|
|
42
24
|
readonly enableTilt: {
|
|
43
25
|
readonly type: BooleanConstructor;
|
|
44
|
-
readonly default:
|
|
45
|
-
};
|
|
46
|
-
readonly mapType: {
|
|
47
|
-
readonly type: import("vue").PropType<BMapGL.MapTypeId>;
|
|
48
|
-
readonly default: "BMAP_NORMAL_MAP";
|
|
26
|
+
readonly default: undefined;
|
|
49
27
|
};
|
|
28
|
+
readonly mapType: import("vue").PropType<BMapGL.MapTypeId>;
|
|
50
29
|
readonly enableAutoResize: {
|
|
51
30
|
readonly type: BooleanConstructor;
|
|
52
|
-
readonly default:
|
|
31
|
+
readonly default: undefined;
|
|
53
32
|
};
|
|
54
33
|
readonly enableTiltGestures: {
|
|
55
34
|
readonly type: BooleanConstructor;
|
|
56
|
-
readonly default:
|
|
35
|
+
readonly default: undefined;
|
|
57
36
|
};
|
|
58
37
|
readonly enableRotate: {
|
|
59
38
|
readonly type: BooleanConstructor;
|
|
60
|
-
readonly default:
|
|
39
|
+
readonly default: undefined;
|
|
61
40
|
};
|
|
62
41
|
readonly enableRotateGestures: {
|
|
63
42
|
readonly type: BooleanConstructor;
|
|
64
|
-
readonly default:
|
|
65
|
-
};
|
|
66
|
-
readonly displayOptions: {
|
|
67
|
-
readonly type: import("vue").PropType<BMapGL.displayOptions>;
|
|
43
|
+
readonly default: undefined;
|
|
68
44
|
};
|
|
45
|
+
readonly displayOptions: import("vue").PropType<BMapGL.displayOptions>;
|
|
69
46
|
readonly onInitd: import("vue").PropType<import("./interface").onInitd>;
|
|
70
47
|
}>, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
71
|
-
readonly maxZoom:
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
readonly
|
|
76
|
-
readonly type: NumberConstructor;
|
|
77
|
-
readonly default: 0;
|
|
78
|
-
};
|
|
79
|
-
readonly heading: {
|
|
80
|
-
readonly type: NumberConstructor;
|
|
81
|
-
readonly default: 0;
|
|
82
|
-
};
|
|
83
|
-
readonly center: {
|
|
84
|
-
readonly type: import("vue").PropType<BMapGL.Point | string | [number, number]>;
|
|
85
|
-
readonly default: readonly [116.403901, 39.915185];
|
|
86
|
-
};
|
|
87
|
-
readonly zoom: {
|
|
88
|
-
readonly type: NumberConstructor;
|
|
89
|
-
readonly default: 14;
|
|
90
|
-
};
|
|
48
|
+
readonly maxZoom: NumberConstructor;
|
|
49
|
+
readonly minZoom: NumberConstructor;
|
|
50
|
+
readonly heading: NumberConstructor;
|
|
51
|
+
readonly center: import("vue").PropType<BMapGL.Point | string | [number, number]>;
|
|
52
|
+
readonly zoom: NumberConstructor;
|
|
91
53
|
readonly class: StringConstructor;
|
|
92
54
|
readonly contentClass: StringConstructor;
|
|
93
55
|
readonly enableScrollWheelZoom: {
|
|
94
56
|
readonly type: BooleanConstructor;
|
|
95
|
-
readonly default:
|
|
57
|
+
readonly default: undefined;
|
|
96
58
|
};
|
|
97
59
|
readonly enableDragging: {
|
|
98
60
|
readonly type: BooleanConstructor;
|
|
99
|
-
readonly default:
|
|
100
|
-
};
|
|
101
|
-
readonly tilt: {
|
|
102
|
-
readonly type: NumberConstructor;
|
|
103
|
-
readonly default: 0;
|
|
61
|
+
readonly default: undefined;
|
|
104
62
|
};
|
|
63
|
+
readonly tilt: NumberConstructor;
|
|
105
64
|
readonly enableTilt: {
|
|
106
65
|
readonly type: BooleanConstructor;
|
|
107
|
-
readonly default:
|
|
108
|
-
};
|
|
109
|
-
readonly mapType: {
|
|
110
|
-
readonly type: import("vue").PropType<BMapGL.MapTypeId>;
|
|
111
|
-
readonly default: "BMAP_NORMAL_MAP";
|
|
66
|
+
readonly default: undefined;
|
|
112
67
|
};
|
|
68
|
+
readonly mapType: import("vue").PropType<BMapGL.MapTypeId>;
|
|
113
69
|
readonly enableAutoResize: {
|
|
114
70
|
readonly type: BooleanConstructor;
|
|
115
|
-
readonly default:
|
|
71
|
+
readonly default: undefined;
|
|
116
72
|
};
|
|
117
73
|
readonly enableTiltGestures: {
|
|
118
74
|
readonly type: BooleanConstructor;
|
|
119
|
-
readonly default:
|
|
75
|
+
readonly default: undefined;
|
|
120
76
|
};
|
|
121
77
|
readonly enableRotate: {
|
|
122
78
|
readonly type: BooleanConstructor;
|
|
123
|
-
readonly default:
|
|
79
|
+
readonly default: undefined;
|
|
124
80
|
};
|
|
125
81
|
readonly enableRotateGestures: {
|
|
126
82
|
readonly type: BooleanConstructor;
|
|
127
|
-
readonly default:
|
|
128
|
-
};
|
|
129
|
-
readonly displayOptions: {
|
|
130
|
-
readonly type: import("vue").PropType<BMapGL.displayOptions>;
|
|
83
|
+
readonly default: undefined;
|
|
131
84
|
};
|
|
85
|
+
readonly displayOptions: import("vue").PropType<BMapGL.displayOptions>;
|
|
132
86
|
readonly onInitd: import("vue").PropType<import("./interface").onInitd>;
|
|
133
87
|
}>> & Readonly<{}>, {
|
|
134
|
-
readonly zoom: number;
|
|
135
|
-
readonly center: string | BMapGL.Point | [number, number];
|
|
136
|
-
readonly heading: number;
|
|
137
|
-
readonly minZoom: number;
|
|
138
|
-
readonly maxZoom: number;
|
|
139
88
|
readonly enableScrollWheelZoom: boolean;
|
|
140
89
|
readonly enableDragging: boolean;
|
|
141
|
-
readonly tilt: number;
|
|
142
90
|
readonly enableTilt: boolean;
|
|
143
|
-
readonly mapType: string;
|
|
144
91
|
readonly enableAutoResize: boolean;
|
|
145
92
|
readonly enableTiltGestures: boolean;
|
|
146
93
|
readonly enableRotate: boolean;
|