@xingm/vmap-cesium-toolbar 0.0.1 → 0.0.2-alpha.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 (45) hide show
  1. package/dist/hooks/toolBarConfig.d.ts +6 -3
  2. package/dist/hooks/useDrawHelper.d.ts +65 -0
  3. package/dist/hooks/useHeatmapHelper.d.ts +34 -0
  4. package/dist/hooks/useOverlayHelper.d.ts +212 -0
  5. package/dist/index.d.ts +664 -36
  6. package/dist/index.js +5078 -1840
  7. package/dist/index.js.map +1 -1
  8. package/dist/index.umd.js +215 -128
  9. package/dist/index.umd.js.map +1 -1
  10. package/dist/libs/CesiumHeatmapLayer.d.ts +109 -0
  11. package/dist/libs/{CesiumMapHelper.d.ts → CesiumMapDraw.d.ts} +34 -51
  12. package/dist/libs/CesiumMapLoader.d.ts +11 -2
  13. package/dist/libs/CesiumMapModel.d.ts +5 -2
  14. package/dist/libs/CesiumMapToolbar.d.ts +23 -67
  15. package/dist/libs/CesiumOverlayService.d.ts +117 -0
  16. package/dist/libs/{CesiumMapConfig.d.ts → config/CesiumMapConfig.d.ts} +3 -3
  17. package/dist/libs/drawHelper/BaseDraw.d.ts +170 -0
  18. package/dist/libs/drawHelper/DrawCircle.d.ts +30 -0
  19. package/dist/libs/drawHelper/DrawLine.d.ts +44 -0
  20. package/dist/libs/drawHelper/DrawPolgon.d.ts +29 -0
  21. package/dist/libs/drawHelper/DrawRectangle.d.ts +24 -0
  22. package/dist/libs/drawHelper/index.d.ts +5 -0
  23. package/dist/libs/overlay/MapCircle.d.ts +64 -0
  24. package/dist/libs/overlay/MapIcon.d.ts +59 -0
  25. package/dist/libs/overlay/MapInfoWindow.d.ts +100 -0
  26. package/dist/libs/overlay/MapLabel.d.ts +63 -0
  27. package/dist/libs/overlay/MapMarker.d.ts +50 -0
  28. package/dist/libs/overlay/MapPolygon.d.ts +70 -0
  29. package/dist/libs/overlay/MapPolyline.d.ts +50 -0
  30. package/dist/libs/overlay/MapRectangle.d.ts +56 -0
  31. package/dist/libs/overlay/MapRing.d.ts +95 -0
  32. package/dist/libs/overlay/MapSVG.d.ts +63 -0
  33. package/dist/libs/overlay/index.d.ts +22 -0
  34. package/dist/libs/overlay/types.d.ts +41 -0
  35. package/dist/libs/toolBar/CesiumMapController.d.ts +78 -0
  36. package/dist/libs/toolBar/MapLayersService.d.ts +67 -0
  37. package/dist/libs/toolBar/MapSearchService.d.ts +41 -0
  38. package/dist/libs/toolBar/MapToolBarConfig.d.ts +3 -0
  39. package/dist/libs/toolBar/MeasurementService.d.ts +16 -0
  40. package/dist/libs/toolBar/NotFlyZonesService.d.ts +46 -0
  41. package/dist/package.json +5 -5
  42. package/dist/utils/calc.d.ts +44 -0
  43. package/dist/utils/common.d.ts +1 -0
  44. package/dist/z.const.d.ts +24 -0
  45. package/package.json +7 -7
@@ -1,5 +1,7 @@
1
1
  import { SearchResult } from '../libs/CesiumMapModel';
2
- export declare const useToolBarConfig: (message: any) => {
2
+ import { Viewer } from '../../node_modules/cesium';
3
+ import { Ref } from 'vue';
4
+ export declare const useToolBarConfig: (viewer: Viewer | undefined, message: Ref<string>) => {
3
5
  toolbarConfig: {
4
6
  position: string;
5
7
  buttonSize: number;
@@ -56,13 +58,14 @@ export declare const useToolBarConfig: (message: any) => {
56
58
  onSelect: (result: SearchResult) => void;
57
59
  };
58
60
  measurement: {
61
+ onMeasurementStart: (positions?: any) => void;
59
62
  onDistanceComplete: (positions: any, distance: any) => void;
60
63
  onAreaComplete: (positions: any, area: any) => void;
61
64
  onClear: () => void;
62
65
  };
63
66
  zoom: {
64
- onZoomIn: (beforeLevel: any, afterLevel: any) => void;
65
- onZoomOut: (beforeLevel: any, afterLevel: any) => void;
67
+ onZoomIn: (beforeLevel: any, afterLevel: any, currentLevel: any) => void;
68
+ onZoomOut: (beforeLevel: any, afterLevel: any, currentLevel: any) => void;
66
69
  };
67
70
  };
68
71
  };
@@ -0,0 +1,65 @@
1
+ import { Ref } from 'vue';
2
+ import { default as DrawHelper } from '../libs/CesiumMapDraw';
3
+ import * as Cesium from "cesium";
4
+ /**
5
+ * 绘制相关的辅助逻辑
6
+ * - 提供线、矩形、圆形、多边形的绘制示例方法
7
+ */
8
+ export declare function useDrawHelper(viewer: Ref<Cesium.Viewer | undefined>, message: Ref<string>): {
9
+ drawHelper: Ref<{
10
+ handleSceneModeChanged: () => void;
11
+ startDrawingLine: (options?: import('../libs/drawHelper').DrawOptions) => void;
12
+ startDrawingPolygon: (options?: import('../libs/drawHelper').DrawOptions) => void;
13
+ startDrawingRectangle: (options?: import('../libs/drawHelper').DrawOptions) => void;
14
+ startDrawingCircle: (options?: import('../libs/drawHelper').DrawOptions) => void;
15
+ endDrawing: () => void;
16
+ cancelDrawing: () => void;
17
+ clearAll: () => void;
18
+ clearAllEntities: () => void;
19
+ clearAllPoints: () => void;
20
+ removeEntity: (entity: Cesium.Entity) => void;
21
+ getFinishedEntities: () => Cesium.Entity[];
22
+ onMeasureComplete: (callback: (result: {
23
+ type: "line" | "polygon" | "rectangle" | "circle";
24
+ positions: Cesium.Cartesian3[];
25
+ distance?: number;
26
+ areaKm2?: number;
27
+ }) => void) => void;
28
+ onDrawStart: (callback: () => void) => void;
29
+ onDrawEnd: (callback: (entity: Cesium.Entity | null) => void) => void;
30
+ onEntityRemoved: (callback: (entity: Cesium.Entity) => void) => void;
31
+ destroy: () => void;
32
+ } | null, DrawHelper | {
33
+ handleSceneModeChanged: () => void;
34
+ startDrawingLine: (options?: import('../libs/drawHelper').DrawOptions) => void;
35
+ startDrawingPolygon: (options?: import('../libs/drawHelper').DrawOptions) => void;
36
+ startDrawingRectangle: (options?: import('../libs/drawHelper').DrawOptions) => void;
37
+ startDrawingCircle: (options?: import('../libs/drawHelper').DrawOptions) => void;
38
+ endDrawing: () => void;
39
+ cancelDrawing: () => void;
40
+ clearAll: () => void;
41
+ clearAllEntities: () => void;
42
+ clearAllPoints: () => void;
43
+ removeEntity: (entity: Cesium.Entity) => void;
44
+ getFinishedEntities: () => Cesium.Entity[];
45
+ onMeasureComplete: (callback: (result: {
46
+ type: "line" | "polygon" | "rectangle" | "circle";
47
+ positions: Cesium.Cartesian3[];
48
+ distance?: number;
49
+ areaKm2?: number;
50
+ }) => void) => void;
51
+ onDrawStart: (callback: () => void) => void;
52
+ onDrawEnd: (callback: (entity: Cesium.Entity | null) => void) => void;
53
+ onEntityRemoved: (callback: (entity: Cesium.Entity) => void) => void;
54
+ destroy: () => void;
55
+ } | null>;
56
+ isDrawing: Ref<boolean, boolean>;
57
+ currentDrawMode: Ref<string | null, string | null>;
58
+ initDrawHelper: () => void;
59
+ endDrawing: () => void;
60
+ addDrawLine: () => void;
61
+ addDrawArea: () => void;
62
+ addDrawCircle: () => void;
63
+ addDrawPolygon: () => void;
64
+ destroyDrawHelper: () => void;
65
+ };
@@ -0,0 +1,34 @@
1
+ import { Ref } from 'vue';
2
+ import { default as CesiumHeatmapLayer, HeatPoint, HeatmapOptions, HeatmapGradient, HeatmapAutoUpdateOptions } from '../libs/CesiumHeatmapLayer';
3
+ import * as Cesium from "cesium";
4
+ /**
5
+ * 热力图相关的辅助逻辑
6
+ */
7
+ export declare function useHeatmapHelper(viewer: Ref<Cesium.Viewer | undefined>): {
8
+ heatmapLayer: Ref<{
9
+ setData: (points: HeatPoint[]) => void;
10
+ setGradient: (gradient: HeatmapGradient) => void;
11
+ setOpacity: (opacity: number) => void;
12
+ setVisible: (visible: boolean) => void;
13
+ destroy: () => void;
14
+ setAutoUpdate: (options?: HeatmapAutoUpdateOptions) => void;
15
+ stopAutoUpdate: () => void;
16
+ } | null, CesiumHeatmapLayer | {
17
+ setData: (points: HeatPoint[]) => void;
18
+ setGradient: (gradient: HeatmapGradient) => void;
19
+ setOpacity: (opacity: number) => void;
20
+ setVisible: (visible: boolean) => void;
21
+ destroy: () => void;
22
+ setAutoUpdate: (options?: HeatmapAutoUpdateOptions) => void;
23
+ stopAutoUpdate: () => void;
24
+ } | null>;
25
+ visible: Ref<boolean, boolean>;
26
+ initHeatmap: (options?: HeatmapOptions) => void;
27
+ updateHeatmapData: (points: HeatPoint[]) => void;
28
+ setHeatmapVisible: (v: boolean) => void;
29
+ setHeatmapOpacity: (alpha: number) => void;
30
+ setHeatmapGradient: (gradient: HeatmapGradient) => void;
31
+ setHeatmapAutoUpdate: (options?: HeatmapAutoUpdateOptions) => void;
32
+ stopHeatmapAutoUpdate: () => void;
33
+ destroyHeatmap: () => void;
34
+ };
@@ -0,0 +1,212 @@
1
+ import { Ref } from 'vue';
2
+ import { Entity } from '../../node_modules/cesium';
3
+ import { CesiumOverlayService } from '../libs/overlay';
4
+ import * as Cesium from "cesium";
5
+ /**
6
+ * 覆盖物相关的辅助逻辑
7
+ * - 提供添加点位(Marker)与示例覆盖物的便捷方法
8
+ * - 管理点位模式的事件处理及清理
9
+ */
10
+ export declare function useOverlayHelper(viewer: Ref<Cesium.Viewer | undefined>, message: Ref<string>): {
11
+ overlayService: Ref<{
12
+ readonly marker: {
13
+ add: (options: import('../libs/overlay').MarkerOptions) => Entity;
14
+ updatePosition: (entity: Entity, position: import('../libs/overlay').OverlayPosition) => void;
15
+ updateStyle: (entity: Entity, options: Partial<Pick<import('../libs/overlay').MarkerOptions, "color" | "outlineColor" | "outlineWidth" | "pixelSize">>) => void;
16
+ remove: (entityOrId: Entity | string) => boolean;
17
+ };
18
+ readonly label: {
19
+ add: (options: import('../libs/overlay').LabelOptions) => Entity;
20
+ updatePosition: (entity: Entity, position: import('../libs/overlay').OverlayPosition) => void;
21
+ updateText: (entity: Entity, text: string) => void;
22
+ updateStyle: (entity: Entity, options: Partial<Pick<import('../libs/overlay').LabelOptions, "fillColor" | "outlineColor" | "outlineWidth" | "font" | "scale">>) => void;
23
+ remove: (entityOrId: Entity | string) => boolean;
24
+ };
25
+ readonly icon: {
26
+ add: (options: import('../libs/overlay').IconOptions) => Entity;
27
+ updatePosition: (entity: Entity, position: import('../libs/overlay').OverlayPosition) => void;
28
+ updateImage: (entity: Entity, image: string) => void;
29
+ updateStyle: (entity: Entity, options: Partial<Pick<import('../libs/overlay').IconOptions, "scale" | "rotation" | "color">>) => void;
30
+ remove: (entityOrId: Entity | string) => boolean;
31
+ };
32
+ readonly svg: {
33
+ add: (options: import('../libs/overlay').SvgOptions) => Entity;
34
+ updatePosition: (entity: Entity, position: import('../libs/overlay').OverlayPosition) => void;
35
+ updateSvg: (entity: Entity, svg: string) => void;
36
+ updateStyle: (entity: Entity, options: Partial<Pick<import('../libs/overlay').SvgOptions, "scale" | "rotation" | "color">>) => void;
37
+ remove: (entityOrId: Entity | string) => boolean;
38
+ };
39
+ readonly infoWindow: {
40
+ setDefaultUpdateInterval: (ms: number) => void;
41
+ forceUpdateAll: () => void;
42
+ bringToFront: (entity: Entity) => void;
43
+ add: (options: import('../libs/overlay').InfoWindowOptions) => Entity;
44
+ updatePosition: (entity: Entity, position: import('../libs/overlay').OverlayPosition) => void;
45
+ updateContent: (entity: Entity, content: string | HTMLElement) => void;
46
+ setVisible: (entity: Entity, visible: boolean) => void;
47
+ show: (entity: Entity) => void;
48
+ hide: (entity: Entity) => void;
49
+ remove: (entity: Entity) => void;
50
+ destroy: () => void;
51
+ };
52
+ readonly polyline: {
53
+ add: (options: import('../libs/overlay').PolylineOptions) => Entity;
54
+ updatePositions: (entity: Entity, positions: import('../libs/overlay').OverlayPosition[]) => void;
55
+ updateStyle: (entity: Entity, options: Partial<Pick<import('../libs/overlay').PolylineOptions, "width" | "material">>) => void;
56
+ remove: (entityOrId: Entity | string) => boolean;
57
+ };
58
+ readonly polygon: {
59
+ add: (options: import('../libs/overlay').PolygonOptions) => Entity;
60
+ updatePositions: (entity: Entity, positions: import('../libs/overlay').OverlayPosition[]) => void;
61
+ updateStyle: (entity: Entity, options: Partial<Pick<import('../libs/overlay').PolygonOptions, "material" | "outline" | "outlineColor" | "outlineWidth">>) => void;
62
+ remove: (entityOrId: Entity | string) => boolean;
63
+ };
64
+ readonly rectangle: {
65
+ add: (options: import('../libs/overlay').RectangleOptions) => Entity;
66
+ updateCoordinates: (entity: Entity, coordinates: Cesium.Rectangle) => void;
67
+ updateStyle: (entity: Entity, options: Partial<Pick<import('../libs/overlay').RectangleOptions, "material" | "outline" | "outlineColor" | "outlineWidth">>) => void;
68
+ remove: (entityOrId: Entity | string) => boolean;
69
+ };
70
+ readonly circle: {
71
+ add: (options: import('../libs/overlay').CircleOptions) => Entity;
72
+ updatePosition: (entity: Entity, position: import('../libs/overlay').OverlayPosition) => void;
73
+ updateRadius: (entity: Entity, radius: number) => void;
74
+ updateStyle: (entity: Entity, options: Partial<Pick<import('../libs/overlay').CircleOptions, "material" | "outline" | "outlineColor" | "outlineWidth">>) => void;
75
+ remove: (entityOrId: Entity | string) => boolean;
76
+ };
77
+ readonly ring: {
78
+ add: (options: import('../libs/overlay').RingOptions) => Entity;
79
+ updatePosition: (entity: Entity, position: import('../libs/overlay').OverlayPosition) => void;
80
+ updateRadius: (entity: Entity, radius: number) => void;
81
+ updateStyle: (entity: Entity, options: Partial<Pick<import('../libs/overlay').RingOptions, "color" | "showInnerLine" | "lineColor" | "lineStyle" | "lineMaterialMode" | "stripeRepeat" | "dashLength" | "dashPattern" | "gapColor" | "width" | "glowWidth" | "lineWidth" | "glowPower" | "clampToGround" | "segments">>) => void;
82
+ setVisible: (entity: Entity, visible: boolean) => void;
83
+ remove: (entityOrId: Entity | string) => boolean;
84
+ };
85
+ addMarker: (options: import('../libs/overlay').MarkerOptions) => Entity;
86
+ addLabel: (options: import('../libs/overlay').LabelOptions) => Entity;
87
+ addIcon: (options: import('../libs/overlay').IconOptions) => Entity;
88
+ addSvg: (options: import('../libs/overlay').SvgOptions) => Entity;
89
+ addInfoWindow: (options: import('../libs/overlay').InfoWindowOptions) => Entity;
90
+ addPolyline: (options: import('../libs/overlay').PolylineOptions) => Entity;
91
+ addPolygon: (options: import('../libs/overlay').PolygonOptions) => Entity;
92
+ addRectangle: (options: import('../libs/overlay').RectangleOptions) => Entity;
93
+ addCircle: (options: import('../libs/overlay').CircleOptions) => Entity;
94
+ addRing: (options: import('../libs/overlay').RingOptions) => Entity;
95
+ getOverlay: (id: string) => Entity | undefined;
96
+ removeOverlay: (id: string) => boolean;
97
+ removeAllOverlays: () => void;
98
+ updateOverlayPosition: (id: string, position: import('../libs/overlay').OverlayPosition) => boolean;
99
+ setOverlayVisible: (id: string, visible: boolean) => boolean;
100
+ getAllOverlayIds: () => string[];
101
+ getAllOverlays: () => Entity[];
102
+ destroy: () => void;
103
+ } | null, CesiumOverlayService | {
104
+ readonly marker: {
105
+ add: (options: import('../libs/overlay').MarkerOptions) => Entity;
106
+ updatePosition: (entity: Entity, position: import('../libs/overlay').OverlayPosition) => void;
107
+ updateStyle: (entity: Entity, options: Partial<Pick<import('../libs/overlay').MarkerOptions, "color" | "outlineColor" | "outlineWidth" | "pixelSize">>) => void;
108
+ remove: (entityOrId: Entity | string) => boolean;
109
+ };
110
+ readonly label: {
111
+ add: (options: import('../libs/overlay').LabelOptions) => Entity;
112
+ updatePosition: (entity: Entity, position: import('../libs/overlay').OverlayPosition) => void;
113
+ updateText: (entity: Entity, text: string) => void;
114
+ updateStyle: (entity: Entity, options: Partial<Pick<import('../libs/overlay').LabelOptions, "fillColor" | "outlineColor" | "outlineWidth" | "font" | "scale">>) => void;
115
+ remove: (entityOrId: Entity | string) => boolean;
116
+ };
117
+ readonly icon: {
118
+ add: (options: import('../libs/overlay').IconOptions) => Entity;
119
+ updatePosition: (entity: Entity, position: import('../libs/overlay').OverlayPosition) => void;
120
+ updateImage: (entity: Entity, image: string) => void;
121
+ updateStyle: (entity: Entity, options: Partial<Pick<import('../libs/overlay').IconOptions, "scale" | "rotation" | "color">>) => void;
122
+ remove: (entityOrId: Entity | string) => boolean;
123
+ };
124
+ readonly svg: {
125
+ add: (options: import('../libs/overlay').SvgOptions) => Entity;
126
+ updatePosition: (entity: Entity, position: import('../libs/overlay').OverlayPosition) => void;
127
+ updateSvg: (entity: Entity, svg: string) => void;
128
+ updateStyle: (entity: Entity, options: Partial<Pick<import('../libs/overlay').SvgOptions, "scale" | "rotation" | "color">>) => void;
129
+ remove: (entityOrId: Entity | string) => boolean;
130
+ };
131
+ readonly infoWindow: {
132
+ setDefaultUpdateInterval: (ms: number) => void;
133
+ forceUpdateAll: () => void;
134
+ bringToFront: (entity: Entity) => void;
135
+ add: (options: import('../libs/overlay').InfoWindowOptions) => Entity;
136
+ updatePosition: (entity: Entity, position: import('../libs/overlay').OverlayPosition) => void;
137
+ updateContent: (entity: Entity, content: string | HTMLElement) => void;
138
+ setVisible: (entity: Entity, visible: boolean) => void;
139
+ show: (entity: Entity) => void;
140
+ hide: (entity: Entity) => void;
141
+ remove: (entity: Entity) => void;
142
+ destroy: () => void;
143
+ };
144
+ readonly polyline: {
145
+ add: (options: import('../libs/overlay').PolylineOptions) => Entity;
146
+ updatePositions: (entity: Entity, positions: import('../libs/overlay').OverlayPosition[]) => void;
147
+ updateStyle: (entity: Entity, options: Partial<Pick<import('../libs/overlay').PolylineOptions, "width" | "material">>) => void;
148
+ remove: (entityOrId: Entity | string) => boolean;
149
+ };
150
+ readonly polygon: {
151
+ add: (options: import('../libs/overlay').PolygonOptions) => Entity;
152
+ updatePositions: (entity: Entity, positions: import('../libs/overlay').OverlayPosition[]) => void;
153
+ updateStyle: (entity: Entity, options: Partial<Pick<import('../libs/overlay').PolygonOptions, "material" | "outline" | "outlineColor" | "outlineWidth">>) => void;
154
+ remove: (entityOrId: Entity | string) => boolean;
155
+ };
156
+ readonly rectangle: {
157
+ add: (options: import('../libs/overlay').RectangleOptions) => Entity;
158
+ updateCoordinates: (entity: Entity, coordinates: Cesium.Rectangle) => void;
159
+ updateStyle: (entity: Entity, options: Partial<Pick<import('../libs/overlay').RectangleOptions, "material" | "outline" | "outlineColor" | "outlineWidth">>) => void;
160
+ remove: (entityOrId: Entity | string) => boolean;
161
+ };
162
+ readonly circle: {
163
+ add: (options: import('../libs/overlay').CircleOptions) => Entity;
164
+ updatePosition: (entity: Entity, position: import('../libs/overlay').OverlayPosition) => void;
165
+ updateRadius: (entity: Entity, radius: number) => void;
166
+ updateStyle: (entity: Entity, options: Partial<Pick<import('../libs/overlay').CircleOptions, "material" | "outline" | "outlineColor" | "outlineWidth">>) => void;
167
+ remove: (entityOrId: Entity | string) => boolean;
168
+ };
169
+ readonly ring: {
170
+ add: (options: import('../libs/overlay').RingOptions) => Entity;
171
+ updatePosition: (entity: Entity, position: import('../libs/overlay').OverlayPosition) => void;
172
+ updateRadius: (entity: Entity, radius: number) => void;
173
+ updateStyle: (entity: Entity, options: Partial<Pick<import('../libs/overlay').RingOptions, "color" | "showInnerLine" | "lineColor" | "lineStyle" | "lineMaterialMode" | "stripeRepeat" | "dashLength" | "dashPattern" | "gapColor" | "width" | "glowWidth" | "lineWidth" | "glowPower" | "clampToGround" | "segments">>) => void;
174
+ setVisible: (entity: Entity, visible: boolean) => void;
175
+ remove: (entityOrId: Entity | string) => boolean;
176
+ };
177
+ addMarker: (options: import('../libs/overlay').MarkerOptions) => Entity;
178
+ addLabel: (options: import('../libs/overlay').LabelOptions) => Entity;
179
+ addIcon: (options: import('../libs/overlay').IconOptions) => Entity;
180
+ addSvg: (options: import('../libs/overlay').SvgOptions) => Entity;
181
+ addInfoWindow: (options: import('../libs/overlay').InfoWindowOptions) => Entity;
182
+ addPolyline: (options: import('../libs/overlay').PolylineOptions) => Entity;
183
+ addPolygon: (options: import('../libs/overlay').PolygonOptions) => Entity;
184
+ addRectangle: (options: import('../libs/overlay').RectangleOptions) => Entity;
185
+ addCircle: (options: import('../libs/overlay').CircleOptions) => Entity;
186
+ addRing: (options: import('../libs/overlay').RingOptions) => Entity;
187
+ getOverlay: (id: string) => Entity | undefined;
188
+ removeOverlay: (id: string) => boolean;
189
+ removeAllOverlays: () => void;
190
+ updateOverlayPosition: (id: string, position: import('../libs/overlay').OverlayPosition) => boolean;
191
+ setOverlayVisible: (id: string, visible: boolean) => boolean;
192
+ getAllOverlayIds: () => string[];
193
+ getAllOverlays: () => Entity[];
194
+ destroy: () => void;
195
+ } | null>;
196
+ initOverlayService: () => void;
197
+ addMarker: () => void;
198
+ addMarkerWithLabel: () => void;
199
+ addLabel: (options: any) => void;
200
+ addIcon: () => void;
201
+ addSvg: () => void;
202
+ addPolyline: () => void;
203
+ addLine: () => void;
204
+ addArea: () => void;
205
+ addCircle: () => void;
206
+ addRing: () => void;
207
+ addPolygon: () => void;
208
+ addRectangle: () => void;
209
+ addInfoWindow: () => void;
210
+ cancelMarkerMode: () => void;
211
+ destroyOverlayService: () => void;
212
+ };