@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.
Files changed (47) hide show
  1. package/dist/index.js +212 -15
  2. package/dist/index.prod.js +1 -1
  3. package/es/components.mjs +1 -0
  4. package/es/components.mjs.map +1 -1
  5. package/es/index.mjs +1 -0
  6. package/es/index.mjs.map +1 -1
  7. package/es/layer/tile/index.d.ts +2 -0
  8. package/es/layer/tile/index.mjs +1 -0
  9. package/es/layer/tile/index.mjs.map +1 -1
  10. package/es/layer/tile/src/tile-props.d.ts +60 -0
  11. package/es/layer/tile/src/tile-props.mjs +52 -0
  12. package/es/layer/tile/src/tile-props.mjs.map +1 -0
  13. package/es/layer/tile/src/tile.d.ts +117 -1
  14. package/es/layer/tile/src/tile.mjs +125 -3
  15. package/es/layer/tile/src/tile.mjs.map +1 -1
  16. package/es/layer/xyz/src/xyz-props.d.ts +7 -1
  17. package/es/layer/xyz/src/xyz-props.mjs.map +1 -1
  18. package/es/layer/xyz/src/xyz.d.ts +3 -3
  19. package/es/layer/xyz/src/xyz.mjs +6 -1
  20. package/es/layer/xyz/src/xyz.mjs.map +1 -1
  21. package/es/map/src/map-props.d.ts +28 -7
  22. package/es/map/src/map-props.mjs +28 -7
  23. package/es/map/src/map-props.mjs.map +1 -1
  24. package/es/map/src/map.d.ts +56 -14
  25. package/lib/components.js +2 -0
  26. package/lib/components.js.map +1 -1
  27. package/lib/index.js +2 -0
  28. package/lib/index.js.map +1 -1
  29. package/lib/layer/tile/index.d.ts +2 -0
  30. package/lib/layer/tile/index.js +2 -0
  31. package/lib/layer/tile/index.js.map +1 -1
  32. package/lib/layer/tile/src/tile-props.d.ts +60 -0
  33. package/lib/layer/tile/src/tile-props.js +54 -0
  34. package/lib/layer/tile/src/tile-props.js.map +1 -0
  35. package/lib/layer/tile/src/tile.d.ts +117 -1
  36. package/lib/layer/tile/src/tile.js +124 -2
  37. package/lib/layer/tile/src/tile.js.map +1 -1
  38. package/lib/layer/xyz/src/xyz-props.d.ts +7 -1
  39. package/lib/layer/xyz/src/xyz-props.js.map +1 -1
  40. package/lib/layer/xyz/src/xyz.d.ts +3 -3
  41. package/lib/layer/xyz/src/xyz.js +6 -1
  42. package/lib/layer/xyz/src/xyz.js.map +1 -1
  43. package/lib/map/src/map-props.d.ts +28 -7
  44. package/lib/map/src/map-props.js +28 -7
  45. package/lib/map/src/map-props.js.map +1 -1
  46. package/lib/map/src/map.d.ts +56 -14
  47. package/package.json +1 -1
@@ -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: BooleanConstructor;
16
- readonly enableDragging: BooleanConstructor;
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: BooleanConstructor;
24
+ readonly enableTilt: {
25
+ readonly type: BooleanConstructor;
26
+ readonly default: undefined;
27
+ };
19
28
  readonly mapType: import("vue").PropType<BMapGL.MapTypeId>;
20
- readonly enableAutoResize: BooleanConstructor;
21
- readonly enableTiltGestures: BooleanConstructor;
22
- readonly enableRotate: BooleanConstructor;
23
- readonly enableRotateGestures: BooleanConstructor;
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: BooleanConstructor;
35
- readonly enableDragging: BooleanConstructor;
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: BooleanConstructor;
64
+ readonly enableTilt: {
65
+ readonly type: BooleanConstructor;
66
+ readonly default: undefined;
67
+ };
38
68
  readonly mapType: import("vue").PropType<BMapGL.MapTypeId>;
39
- readonly enableAutoResize: BooleanConstructor;
40
- readonly enableTiltGestures: BooleanConstructor;
41
- readonly enableRotate: BooleanConstructor;
42
- readonly enableRotateGestures: BooleanConstructor;
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<{}>, {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@spuermomonga/vue3-bmapgl",
3
- "version": "0.0.8",
3
+ "version": "0.0.10",
4
4
  "description": "Baidu Map GL encapsulation for Vue 3",
5
5
  "author": "SpuerMomonga <spuermomonga@qq.com>",
6
6
  "license": "MIT",