@syncfusion/ej2-maps 19.4.56 → 19.4.57-105067

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 (84) hide show
  1. package/.eslintrc.json +18 -3
  2. package/.github/PULL_REQUEST_TEMPLATE/Bug.md +72 -72
  3. package/.github/PULL_REQUEST_TEMPLATE/Feature.md +49 -49
  4. package/CHANGELOG.md +441 -439
  5. package/README.md +73 -73
  6. package/dist/ej2-maps.umd.min.js +1 -10
  7. package/dist/ej2-maps.umd.min.js.map +1 -1
  8. package/dist/es6/ej2-maps.es2015.js +1161 -638
  9. package/dist/es6/ej2-maps.es2015.js.map +1 -1
  10. package/dist/es6/ej2-maps.es5.js +1200 -678
  11. package/dist/es6/ej2-maps.es5.js.map +1 -1
  12. package/dist/global/ej2-maps.min.js +1 -10
  13. package/dist/global/ej2-maps.min.js.map +1 -1
  14. package/dist/global/index.d.ts +0 -9
  15. package/dist/ts/maps/layers/bing-map.ts +50 -0
  16. package/dist/ts/maps/layers/bubble.ts +290 -0
  17. package/dist/ts/maps/layers/color-mapping.ts +226 -0
  18. package/dist/ts/maps/layers/data-label.ts +418 -0
  19. package/dist/ts/maps/layers/layer-panel.ts +1480 -0
  20. package/dist/ts/maps/layers/legend.ts +2236 -0
  21. package/dist/ts/maps/layers/marker.ts +453 -0
  22. package/dist/ts/maps/layers/navigation-selected-line.ts +167 -0
  23. package/dist/ts/maps/maps.ts +2886 -0
  24. package/dist/ts/maps/model/base.ts +1843 -0
  25. package/dist/ts/maps/model/constants.ts +200 -0
  26. package/dist/ts/maps/model/export-image.ts +178 -0
  27. package/dist/ts/maps/model/export-pdf.ts +170 -0
  28. package/dist/ts/maps/model/interface.ts +823 -0
  29. package/dist/ts/maps/model/print.ts +104 -0
  30. package/dist/ts/maps/model/theme.ts +554 -0
  31. package/dist/ts/maps/user-interaction/annotation.ts +127 -0
  32. package/dist/ts/maps/user-interaction/highlight.ts +233 -0
  33. package/dist/ts/maps/user-interaction/selection.ts +321 -0
  34. package/dist/ts/maps/user-interaction/tooltip.ts +387 -0
  35. package/dist/ts/maps/user-interaction/zoom.ts +1767 -0
  36. package/dist/ts/maps/utils/enum.ts +368 -0
  37. package/dist/ts/maps/utils/helper.ts +3421 -0
  38. package/helper/e2e/index.js +3 -3
  39. package/helper/e2e/maps-helper.js +13 -13
  40. package/license +9 -9
  41. package/package.json +85 -85
  42. package/src/maps/layers/bing-map.d.ts +4 -0
  43. package/src/maps/layers/bing-map.js +16 -3
  44. package/src/maps/layers/bubble.d.ts +1 -2
  45. package/src/maps/layers/bubble.js +7 -12
  46. package/src/maps/layers/data-label.d.ts +1 -4
  47. package/src/maps/layers/data-label.js +32 -35
  48. package/src/maps/layers/layer-panel.d.ts +18 -1
  49. package/src/maps/layers/layer-panel.js +226 -72
  50. package/src/maps/layers/legend.d.ts +5 -2
  51. package/src/maps/layers/legend.js +170 -61
  52. package/src/maps/layers/marker.d.ts +2 -4
  53. package/src/maps/layers/marker.js +49 -48
  54. package/src/maps/layers/navigation-selected-line.d.ts +1 -2
  55. package/src/maps/layers/navigation-selected-line.js +7 -13
  56. package/src/maps/maps-model.d.ts +259 -251
  57. package/src/maps/maps.d.ts +24 -3
  58. package/src/maps/maps.js +152 -90
  59. package/src/maps/model/base-model.d.ts +1025 -1021
  60. package/src/maps/model/base.d.ts +5 -1
  61. package/src/maps/model/base.js +24 -24
  62. package/src/maps/model/constants.d.ts +6 -0
  63. package/src/maps/model/constants.js +6 -0
  64. package/src/maps/model/export-image.d.ts +2 -4
  65. package/src/maps/model/export-image.js +26 -32
  66. package/src/maps/model/export-pdf.d.ts +4 -6
  67. package/src/maps/model/export-pdf.js +27 -35
  68. package/src/maps/model/interface.d.ts +34 -26
  69. package/src/maps/model/print.d.ts +2 -5
  70. package/src/maps/model/print.js +33 -21
  71. package/src/maps/model/theme.js +7 -4
  72. package/src/maps/user-interaction/annotation.d.ts +1 -2
  73. package/src/maps/user-interaction/annotation.js +3 -4
  74. package/src/maps/user-interaction/highlight.d.ts +1 -2
  75. package/src/maps/user-interaction/highlight.js +11 -10
  76. package/src/maps/user-interaction/selection.d.ts +1 -2
  77. package/src/maps/user-interaction/selection.js +42 -19
  78. package/src/maps/user-interaction/tooltip.d.ts +3 -5
  79. package/src/maps/user-interaction/tooltip.js +27 -14
  80. package/src/maps/user-interaction/zoom.d.ts +3 -8
  81. package/src/maps/user-interaction/zoom.js +282 -162
  82. package/src/maps/utils/enum.d.ts +5 -1
  83. package/src/maps/utils/helper.d.ts +1 -1
  84. package/src/maps/utils/helper.js +62 -31
@@ -1,4 +1,4 @@
1
- import { Component, NotifyPropertyChanges, INotifyPropertyChanged, Property, Ajax } from '@syncfusion/ej2-base';import { EventHandler, Browser, EmitType, isNullOrUndefined, createElement, setValue, extend } from '@syncfusion/ej2-base';import { Event, remove, L10n, Collection, Internationalization, Complex } from '@syncfusion/ej2-base';import { ModuleDeclaration } from '@syncfusion/ej2-base';import { SvgRenderer } from '@syncfusion/ej2-svg-base';import { Size, createSvg, Point, removeElement, triggerShapeEvent, showTooltip, checkShapeDataFields, MapLocation, getMousePosition, calculateSize } from './utils/helper';import { getElement, removeClass, getTranslate, triggerItemSelectionEvent, mergeSeparateCluster, customizeStyle, querySelector } from './utils/helper';import { createStyle } from './utils/helper';import { ZoomSettings, LegendSettings, Tile } from './model/base';import { LayerSettings, TitleSettings, Border, Margin, MapsAreaSettings, Annotation, CenterPosition } from './model/base';import { ZoomSettingsModel, LegendSettingsModel, LayerSettingsModel, BubbleSettingsModel } from './model/base-model';import { MarkerSettingsModel, SelectionSettingsModel , InitialMarkerSelectionSettingsModel} from './model/base-model';import { TitleSettingsModel, BorderModel, MarginModel, CenterPositionModel, InitialShapeSelectionSettingsModel } from './model/base-model';import { MapsAreaSettingsModel, AnnotationModel } from './model/base-model';import { Bubble } from './layers/bubble';import { Legend } from './layers/legend';import { Marker } from './layers/marker';import { Highlight } from './user-interaction/highlight';import { Selection } from './user-interaction/selection';import { MapsTooltip } from './user-interaction/tooltip';import { Zoom } from './user-interaction/zoom';import { load, click, rightClick, loaded, doubleClick, resize, shapeSelected, itemSelection, zoomIn } from './model/constants';import { ProjectionType, MapsTheme, PanDirection, TooltipGesture } from './utils/enum';import { getThemeStyle } from './model/theme';import { BingMap } from './layers/bing-map';import { ILoadEventArgs, ILoadedEventArgs, IMouseEventArgs, IResizeEventArgs, ITooltipRenderEventArgs } from './model/interface';import { GeoPosition, ITooltipRenderCompleteEventArgs, ILegendRenderingEventArgs } from './model/interface';import { ILayerRenderingEventArgs, IShapeRenderingEventArgs, IMarkerRenderingEventArgs, IMarkerClickEventArgs } from './model/interface';import { IMarkerMoveEventArgs, ILabelRenderingEventArgs, IBubbleMoveEventArgs, IBubbleClickEventArgs } from './model/interface';import { IMarkerClusterClickEventArgs, IMarkerClusterMoveEventArgs, IMarkerClusterRenderingEventArgs } from './model/interface';import { ISelectionEventArgs, IShapeSelectedEventArgs, IMapPanEventArgs, IMapZoomEventArgs } from './model/interface';import { IBubbleRenderingEventArgs, IAnimationCompleteEventArgs, IPrintEventArgs, IThemeStyle } from './model/interface';import { LayerPanel } from './layers/layer-panel';import { GeoLocation, Rect, RectOption, measureText, getElementByID, MapAjax, processResult, getElementsByClassName } from '../maps/utils/helper';import { findPosition, textTrim, TextOption, renderTextElement, convertGeoToPoint, calculateZoomLevel } from '../maps/utils/helper';import { Annotations } from '../maps/user-interaction/annotation';import { FontModel, DataLabel, MarkerSettings, IAnnotationRenderingEventArgs } from './index';import { NavigationLineSettingsModel, changeBorderWidth } from './index';import { NavigationLine } from './layers/navigation-selected-line';import { DataManager, Query } from '@syncfusion/ej2-data';import { ExportType } from '../maps/utils/enum';import { PdfPageOrientation } from '@syncfusion/ej2-pdf-export';import { Print } from './model/print';import { PdfExport } from './model/export-pdf';import { ImageExport } from './model/export-image';
1
+ import { Component, NotifyPropertyChanges, INotifyPropertyChanged, Property, Ajax } from '@syncfusion/ej2-base';
2
2
  import {ComponentModel} from '@syncfusion/ej2-base';
3
3
 
4
4
  /**
@@ -7,360 +7,368 @@ import {ComponentModel} from '@syncfusion/ej2-base';
7
7
  export interface MapsModel extends ComponentModel{
8
8
 
9
9
  /**
10
- * Sets and gets the background color of the maps container.
11
- *
12
- * @default null
13
- */
14
- background?: string;
10
+ * Sets and gets the background color of the maps container.
11
+ *
12
+ * @default null
13
+ */
14
+ background?: string;
15
15
 
16
16
  /**
17
- * Enables or disables the visibility state of the separator for grouping.
18
- *
19
- * @default false
20
- */
21
- useGroupingSeparator?: boolean;
17
+ * Enables or disables the visibility state of the separator for grouping.
18
+ *
19
+ * @default false
20
+ */
21
+ useGroupingSeparator?: boolean;
22
22
 
23
23
  /**
24
- * Sets and gets the format in which the text in the maps are to be rendered.
25
- *
26
- * @default null
27
- */
28
- format?: string;
24
+ * Sets and gets the format in which the text in the maps are to be rendered.
25
+ *
26
+ * @default null
27
+ */
28
+ format?: string;
29
29
 
30
30
  /**
31
- * Sets and gets the width in which the maps is to be rendered.
32
- *
33
- * @default null
34
- */
35
- width?: string;
31
+ * Sets and gets the width in which the maps is to be rendered.
32
+ *
33
+ * @default null
34
+ */
35
+ width?: string;
36
36
 
37
37
  /**
38
- * Sets and gets the height in which the maps is to be rendered.
39
- *
40
- * @default null
41
- */
42
- height?: string;
38
+ * Sets and gets the height in which the maps is to be rendered.
39
+ *
40
+ * @default null
41
+ */
42
+ height?: string;
43
43
 
44
44
  /**
45
- * Sets and gets the mode in which the tooltip is to be displayed.
46
- * The tooltip can be rendered on mouse move, click or double clicking on the
47
- * element on the map.
48
- *
49
- * @default 'MouseMove'
50
- */
51
- tooltipDisplayMode?: TooltipGesture;
45
+ * Sets and gets the mode in which the tooltip is to be displayed.
46
+ * The tooltip can be rendered on mouse move, click or double clicking on the
47
+ * element on the map.
48
+ *
49
+ * @default 'MouseMove'
50
+ */
51
+ tooltipDisplayMode?: TooltipGesture;
52
52
 
53
53
  /**
54
- * Enables or disables the print functionality in map.
55
- *
56
- * @default false
57
- */
58
- allowPrint?: boolean;
54
+ * Enables or disables the print functionality in map.
55
+ *
56
+ * @default false
57
+ */
58
+ allowPrint?: boolean;
59
59
 
60
60
  /**
61
- * Enables or disables the export to image functionality in map.
62
- *
63
- * @default false
64
- */
65
- allowImageExport?: boolean;
61
+ * Enables or disables the export to image functionality in map.
62
+ *
63
+ * @default false
64
+ */
65
+ allowImageExport?: boolean;
66
66
 
67
67
  /**
68
- * Enables or disables the export to PDF functionality in map.
69
- *
70
- * @default false
71
- */
72
- allowPdfExport?: boolean;
68
+ * Enables or disables the export to PDF functionality in map.
69
+ *
70
+ * @default false
71
+ */
72
+ allowPdfExport?: boolean;
73
73
 
74
74
  /**
75
- * Sets and gets the title to be displayed for maps.
76
- */
77
- titleSettings?: TitleSettingsModel;
75
+ * Sets and gets the title to be displayed for maps.
76
+ */
77
+ titleSettings?: TitleSettingsModel;
78
78
 
79
79
  /**
80
- * Sets and gets the options to customize the zooming operations in maps.
81
- */
82
- zoomSettings?: ZoomSettingsModel;
80
+ * Sets and gets the options to customize the zooming operations in maps.
81
+ */
82
+ zoomSettings?: ZoomSettingsModel;
83
83
 
84
84
  /**
85
- * Sets and gets the options to customize the legend of the maps.
86
- */
87
- legendSettings?: LegendSettingsModel;
85
+ * Sets and gets the options to customize the legend of the maps.
86
+ */
87
+ legendSettings?: LegendSettingsModel;
88
88
 
89
89
  /**
90
- * Sets and gets the options to customize the layers of the maps.
91
- */
92
- layers?: LayerSettingsModel[];
90
+ * Sets and gets the options to customize the layers of the maps.
91
+ */
92
+ layers?: LayerSettingsModel[];
93
93
 
94
94
  /**
95
- * Sets and gets the options for customizing the annotation of maps.
96
- */
97
- annotations?: AnnotationModel[];
95
+ * Sets and gets the options for customizing the annotation of maps.
96
+ */
97
+ annotations?: AnnotationModel[];
98
98
 
99
99
  /**
100
- * Sets and gets the options to customize the margins of the maps.
101
- */
102
- margin?: MarginModel;
100
+ * Sets and gets the options to customize the margins of the maps.
101
+ */
102
+ margin?: MarginModel;
103
103
 
104
104
  /**
105
- * Sets and gets the options for customizing the color and width of the maps border.
106
- */
107
- border?: BorderModel;
105
+ * Sets and gets the options for customizing the color and width of the maps border.
106
+ */
107
+ border?: BorderModel;
108
108
 
109
109
  /**
110
- * Set and gets the theme supported for the maps.
111
- *
112
- * @default Material
113
- */
114
- theme?: MapsTheme;
110
+ * Set and gets the theme supported for the maps.
111
+ *
112
+ * @default Material
113
+ */
114
+ theme?: MapsTheme;
115
115
 
116
116
  /**
117
- * Sets and gets the projection type for the maps.
118
- *
119
- * @default Mercator
120
- */
121
- projectionType?: ProjectionType;
117
+ * Sets and gets the projection type for the maps.
118
+ *
119
+ * @default Mercator
120
+ */
121
+ projectionType?: ProjectionType;
122
122
 
123
123
  /**
124
- * Sets and gets the base map index of maps. It provides the option to select which layer to be visible in the maps.
125
- *
126
- * @default 0
127
- */
128
- baseLayerIndex?: number;
124
+ * Sets and gets the base map index of maps. It provides the option to select which layer to be visible in the maps.
125
+ *
126
+ * @default 0
127
+ */
128
+ baseLayerIndex?: number;
129
129
 
130
130
  /**
131
- * Sets and gets the description for maps.
132
- *
133
- * @default null
134
- */
135
- description?: string;
131
+ * Sets and gets the description for maps.
132
+ *
133
+ * @default null
134
+ */
135
+ description?: string;
136
136
 
137
137
  /**
138
- * Sets and gets the tab index value for the maps.
139
- *
140
- * @default 1
141
- */
142
- tabIndex?: number;
138
+ * Sets and gets the tab index value for the maps.
139
+ *
140
+ * @default 1
141
+ */
142
+ tabIndex?: number;
143
143
 
144
144
  /**
145
- * Sets and gets the center position of the maps.
146
- */
147
- centerPosition?: CenterPositionModel;
145
+ * Sets and gets the center position of the maps.
146
+ */
147
+ centerPosition?: CenterPositionModel;
148
148
 
149
149
  /**
150
- * Sets and gets the options to customize the area around the map.
151
- */
152
- mapsArea?: MapsAreaSettingsModel;
150
+ * Sets and gets the options to customize the area around the map.
151
+ */
152
+ mapsArea?: MapsAreaSettingsModel;
153
153
 
154
154
  /**
155
- * Triggers when the map is on load.
156
- *
157
- * @event load
158
- */
159
- load?: EmitType<ILoadEventArgs>;
155
+ * Triggers when the map is on load.
156
+ *
157
+ * @event load
158
+ */
159
+ load?: EmitType<ILoadEventArgs>;
160
160
 
161
161
  /**
162
- * Triggers before the print gets started.
163
- *
164
- * @event beforePrint
165
- */
166
- beforePrint?: EmitType<IPrintEventArgs>;
162
+ * Triggers before the print gets started.
163
+ *
164
+ * @event beforePrint
165
+ */
166
+ beforePrint?: EmitType<IPrintEventArgs>;
167
167
 
168
168
  /**
169
- * Triggers after the maps gets rendered.
170
- *
171
- * @event loaded
172
- */
173
- loaded?: EmitType<ILoadedEventArgs>;
169
+ * Triggers after the maps gets rendered.
170
+ *
171
+ * @event loaded
172
+ */
173
+ loaded?: EmitType<ILoadedEventArgs>;
174
174
 
175
175
  /**
176
- * Triggers when clicking an element in maps.
177
- *
178
- * @event click
179
- */
180
- click?: EmitType<IMouseEventArgs>;
176
+ * Triggers when a user clicks on an element in Maps.
177
+ *
178
+ * @event click
179
+ * @deprecated
180
+ */
181
+ click?: EmitType<IMouseEventArgs>;
181
182
 
182
183
  /**
183
- * Triggers when performing the double click operation on an element in maps.
184
- *
185
- * @event doubleClick
186
- */
187
- doubleClick?: EmitType<IMouseEventArgs>;
184
+ * Triggers when a user clicks on an element in Maps.
185
+ *
186
+ * @event onclick
187
+ */
188
+ onclick?: EmitType<IMouseEventArgs>;
188
189
 
189
190
  /**
190
- * Triggers when performing the right click operation on an element in maps.
191
- *
192
- * @event rightClick
193
- */
194
- rightClick?: EmitType<IMouseEventArgs>;
191
+ * Triggers when performing the double click operation on an element in maps.
192
+ *
193
+ * @event doubleClick
194
+ */
195
+ doubleClick?: EmitType<IMouseEventArgs>;
195
196
 
196
197
  /**
197
- * Triggers when resizing the maps.
198
- *
199
- * @event resize
200
- */
201
- resize?: EmitType<IResizeEventArgs>;
198
+ * Triggers when performing the right click operation on an element in maps.
199
+ *
200
+ * @event rightClick
201
+ */
202
+ rightClick?: EmitType<IMouseEventArgs>;
202
203
 
203
204
  /**
204
- * Triggers before the maps tooltip gets rendered.
205
- *
206
- * @event tooltipRender
207
- */
208
- tooltipRender?: EmitType<ITooltipRenderEventArgs>;
205
+ * Triggers when resizing the maps.
206
+ *
207
+ * @event resize
208
+ */
209
+ resize?: EmitType<IResizeEventArgs>;
209
210
 
210
211
  /**
211
- * Triggers before the legend gets rendered.
212
- *
213
- * @event legendRendering
214
-
215
- */
216
- legendRendering?: EmitType<ILegendRenderingEventArgs>;
212
+ * Triggers before the maps tooltip gets rendered.
213
+ *
214
+ * @event tooltipRender
215
+ */
216
+ tooltipRender?: EmitType<ITooltipRenderEventArgs>;
217
217
 
218
218
  /**
219
- * Triggers after the maps tooltip gets rendered.
220
- *
219
+ * Triggers before the legend gets rendered.
220
+ *
221
+ * @event legendRendering
222
+ * @deprecated
223
+ */
224
+ legendRendering?: EmitType<ILegendRenderingEventArgs>;
221
225
 
222
- * @event tooltipRenderComplete
223
- */
224
- tooltipRenderComplete?: EmitType<ITooltipRenderCompleteEventArgs>;
226
+ /**
227
+ * Triggers after the maps tooltip gets rendered.
228
+ *
229
+ * @deprecated
230
+ * @event tooltipRenderComplete
231
+ */
232
+ tooltipRenderComplete?: EmitType<ITooltipRenderCompleteEventArgs>;
225
233
 
226
234
  /**
227
- * Triggers when clicking a shape in maps.
228
- *
229
- * @event shapeSelected
230
- */
231
- shapeSelected?: EmitType<IShapeSelectedEventArgs>;
235
+ * Triggers when clicking a shape in maps.
236
+ *
237
+ * @event shapeSelected
238
+ */
239
+ shapeSelected?: EmitType<IShapeSelectedEventArgs>;
232
240
 
233
241
  /**
234
- * Triggers when clicking the shape on maps and before the selection is applied.
235
- *
236
- * @event itemSelection
237
- */
238
- itemSelection?: EmitType<ISelectionEventArgs>;
242
+ * Triggers when clicking the shape on maps and before the selection is applied.
243
+ *
244
+ * @event itemSelection
245
+ */
246
+ itemSelection?: EmitType<ISelectionEventArgs>;
239
247
 
240
248
  /**
241
- * Trigger when mouse move on the shape in maps and before the shape gets highlighted.
242
- *
243
- * @event itemHighlight
244
- */
245
- itemHighlight?: EmitType<ISelectionEventArgs>;
249
+ * Trigger when mouse move on the shape in maps and before the shape gets highlighted.
250
+ *
251
+ * @event itemHighlight
252
+ */
253
+ itemHighlight?: EmitType<ISelectionEventArgs>;
246
254
 
247
255
  /**
248
- * Triggers when mouse move on the shape in maps and before the shape gets highlighted.
249
- *
250
- * @event shapeHighlight
251
- */
252
- shapeHighlight?: EmitType<IShapeSelectedEventArgs>;
256
+ * Triggers when mouse move on the shape in maps and before the shape gets highlighted.
257
+ *
258
+ * @event shapeHighlight
259
+ */
260
+ shapeHighlight?: EmitType<IShapeSelectedEventArgs>;
253
261
 
254
262
  /**
255
- * Triggers before the maps layer gets rendered.
256
- *
257
- * @event layerRendering
258
- */
259
- layerRendering?: EmitType<ILayerRenderingEventArgs>;
263
+ * Triggers before the maps layer gets rendered.
264
+ *
265
+ * @event layerRendering
266
+ */
267
+ layerRendering?: EmitType<ILayerRenderingEventArgs>;
260
268
 
261
269
  /**
262
- * Triggers before the maps shape gets rendered.
263
- *
264
- * @event shapeRendering
265
- */
266
- shapeRendering?: EmitType<IShapeRenderingEventArgs>;
270
+ * Triggers before the maps shape gets rendered.
271
+ *
272
+ * @event shapeRendering
273
+ */
274
+ shapeRendering?: EmitType<IShapeRenderingEventArgs>;
267
275
 
268
276
  /**
269
- * Triggers before the maps marker gets rendered.
270
- *
271
- * @event markerRendering
272
- */
273
- markerRendering?: EmitType<IMarkerRenderingEventArgs>;
277
+ * Triggers before the maps marker gets rendered.
278
+ *
279
+ * @event markerRendering
280
+ */
281
+ markerRendering?: EmitType<IMarkerRenderingEventArgs>;
274
282
 
275
283
  /**
276
- * Triggers before the maps marker cluster gets rendered.
277
- *
278
- * @event markerClusterRendering
279
- */
280
- markerClusterRendering?: EmitType<IMarkerClusterRenderingEventArgs>;
284
+ * Triggers before the maps marker cluster gets rendered.
285
+ *
286
+ * @event markerClusterRendering
287
+ */
288
+ markerClusterRendering?: EmitType<IMarkerClusterRenderingEventArgs>;
281
289
 
282
290
  /**
283
- * Triggers when clicking on the maps marker element.
284
- *
285
- * @event markerClick
286
- */
287
- markerClick?: EmitType<IMarkerClickEventArgs>;
291
+ * Triggers when clicking on the maps marker element.
292
+ *
293
+ * @event markerClick
294
+ */
295
+ markerClick?: EmitType<IMarkerClickEventArgs>;
288
296
 
289
297
  /**
290
- * Triggers when clicking the marker cluster in maps.
291
- *
292
- * @event markerClusterClick
293
- */
294
- markerClusterClick?: EmitType<IMarkerClusterClickEventArgs>;
298
+ * Triggers when clicking the marker cluster in maps.
299
+ *
300
+ * @event markerClusterClick
301
+ */
302
+ markerClusterClick?: EmitType<IMarkerClusterClickEventArgs>;
295
303
 
296
304
  /**
297
- * Triggers when moving the mouse over the marker cluster element in maps.
298
- *
299
- * @event markerClusterMouseMove
300
- */
301
- markerClusterMouseMove?: EmitType<IMarkerClusterMoveEventArgs>;
305
+ * Triggers when moving the mouse over the marker cluster element in maps.
306
+ *
307
+ * @event markerClusterMouseMove
308
+ */
309
+ markerClusterMouseMove?: EmitType<IMarkerClusterMoveEventArgs>;
302
310
 
303
311
  /**
304
- * Triggers when moving the mouse over the marker element in maps.
305
- *
306
- * @event markerMouseMove
307
- */
308
- markerMouseMove?: EmitType<IMarkerMoveEventArgs>;
312
+ * Triggers when moving the mouse over the marker element in maps.
313
+ *
314
+ * @event markerMouseMove
315
+ */
316
+ markerMouseMove?: EmitType<IMarkerMoveEventArgs>;
309
317
 
310
318
  /**
311
- * Triggers before the data-label gets rendered.
312
- *
313
- * @event dataLabelRendering
314
- */
315
- dataLabelRendering?: EmitType<ILabelRenderingEventArgs>;
319
+ * Triggers before the data-label gets rendered.
320
+ *
321
+ * @event dataLabelRendering
322
+ */
323
+ dataLabelRendering?: EmitType<ILabelRenderingEventArgs>;
316
324
 
317
325
  /**
318
- * Triggers before the bubble element gets rendered on the map.
319
- *
320
- * @event bubbleRendering
321
- */
322
- bubbleRendering?: EmitType<IBubbleRenderingEventArgs>;
326
+ * Triggers before the bubble element gets rendered on the map.
327
+ *
328
+ * @event bubbleRendering
329
+ */
330
+ bubbleRendering?: EmitType<IBubbleRenderingEventArgs>;
323
331
 
324
332
  /**
325
- * Triggers when performing the click operation on the bubble element in maps.
326
- *
327
- * @event bubbleClick
328
- */
329
- bubbleClick?: EmitType<IBubbleClickEventArgs>;
333
+ * Triggers when performing the click operation on the bubble element in maps.
334
+ *
335
+ * @event bubbleClick
336
+ */
337
+ bubbleClick?: EmitType<IBubbleClickEventArgs>;
330
338
 
331
339
  /**
332
- * Triggers when hovering the mouse on the bubble element in maps.
333
- *
334
- * @event bubbleMouseMove
335
- */
336
- bubbleMouseMove?: EmitType<IBubbleMoveEventArgs>;
340
+ * Triggers when hovering the mouse on the bubble element in maps.
341
+ *
342
+ * @event bubbleMouseMove
343
+ */
344
+ bubbleMouseMove?: EmitType<IBubbleMoveEventArgs>;
337
345
 
338
346
  /**
339
- * Triggers after the animation completed in the maps component.
340
- *
341
- * @event animationComplete
342
- */
343
- animationComplete?: EmitType<IAnimationCompleteEventArgs>;
347
+ * Triggers after the animation completed in the maps component.
348
+ *
349
+ * @event animationComplete
350
+ */
351
+ animationComplete?: EmitType<IAnimationCompleteEventArgs>;
344
352
 
345
353
  /**
346
- * Triggers before rendering the annotation in maps.
347
- *
348
- * @event annotationRendering
349
- */
350
- annotationRendering?: EmitType<IAnnotationRenderingEventArgs>;
354
+ * Triggers before rendering the annotation in maps.
355
+ *
356
+ * @event annotationRendering
357
+ */
358
+ annotationRendering?: EmitType<IAnnotationRenderingEventArgs>;
351
359
 
352
360
  /**
353
- * Triggers before the zoom operations in the maps such as zoom in and zoom out.
354
- *
355
- * @event zoom
356
- */
357
- zoom?: EmitType<IMapZoomEventArgs>;
361
+ * Triggers before the zoom operations in the maps such as zoom in and zoom out.
362
+ *
363
+ * @event zoom
364
+ */
365
+ zoom?: EmitType<IMapZoomEventArgs>;
358
366
 
359
367
  /**
360
- * Triggers before performing the panning operation.
361
- *
362
- * @event pan
363
- */
364
- pan?: EmitType<IMapPanEventArgs>;
368
+ * Triggers before performing the panning operation.
369
+ *
370
+ * @event pan
371
+ */
372
+ pan?: EmitType<IMapPanEventArgs>;
365
373
 
366
374
  }