@syncfusion/ej2-maps 19.4.53 → 19.4.56-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 -422
  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 +1220 -653
  9. package/dist/es6/ej2-maps.es2015.js.map +1 -1
  10. package/dist/es6/ej2-maps.es5.js +1258 -692
  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 +25 -3
  58. package/src/maps/maps.js +179 -106
  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 +34 -33
  66. package/src/maps/model/export-pdf.d.ts +4 -6
  67. package/src/maps/model/export-pdf.js +31 -32
  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 +32 -18
  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 +9 -1
  84. package/src/maps/utils/helper.js +82 -33
@@ -1,4 +1,4 @@
1
- import { Property, ChildProperty, Complex, Collection } from '@syncfusion/ej2-base';import { DataManager, Query } from '@syncfusion/ej2-data';import { Alignment, LegendPosition, LegendType, LegendMode, ShapeLayerType, Type, MarkerType, Orientation, MapAjax } from '../../index';import { SmartLabelMode, IntersectAction } from '../../index';import { Theme } from './theme';import { Point, GeoLocation } from '../utils/helper';import { BingMapType, LegendArrangement, LegendShape, BubbleType, StaticMapType } from '../utils/enum';import { AnnotationAlignment, GeometryType, LabelPosition, LabelIntersectAction } from '../index';
1
+ import { Property, ChildProperty, Complex, Collection } from '@syncfusion/ej2-base';
2
2
 
3
3
  /**
4
4
  * Interface for a class Annotation
@@ -6,40 +6,40 @@ import { Property, ChildProperty, Complex, Collection } from '@syncfusion/ej2-ba
6
6
  export interface AnnotationModel {
7
7
 
8
8
  /**
9
- * Sets and gets the content for the annotation in maps component.
10
- */
11
- content?: string;
9
+ * Sets and gets the content for the annotation in maps component.
10
+ */
11
+ content?: string;
12
12
 
13
13
  /**
14
- * Sets and gets the x position of the annotation in maps component.
15
- */
16
- x?: string;
14
+ * Sets and gets the x position of the annotation in maps component.
15
+ */
16
+ x?: string;
17
17
 
18
18
  /**
19
- * Sets and gets the y position of the annotation in maps component.
20
- */
21
- y?: string;
19
+ * Sets and gets the y position of the annotation in maps component.
20
+ */
21
+ y?: string;
22
22
 
23
23
  /**
24
- * Sets and gets the annotation element to be aligned vertically.
25
- *
26
- * @default None
27
- */
28
- verticalAlignment?: AnnotationAlignment;
24
+ * Sets and gets the annotation element to be aligned vertically.
25
+ *
26
+ * @default None
27
+ */
28
+ verticalAlignment?: AnnotationAlignment;
29
29
 
30
30
  /**
31
- * Sets and gets the annotation element to be aligned horizontally.
32
- *
33
- * @default None
34
- */
35
- horizontalAlignment?: AnnotationAlignment;
31
+ * Sets and gets the annotation element to be aligned horizontally.
32
+ *
33
+ * @default None
34
+ */
35
+ horizontalAlignment?: AnnotationAlignment;
36
36
 
37
37
  /**
38
- * Sets and gets the z-index of the annotation in maps component.
39
- *
40
- * @default '-1'
41
- */
42
- zIndex?: string;
38
+ * Sets and gets the z-index of the annotation in maps component.
39
+ *
40
+ * @default '-1'
41
+ */
42
+ zIndex?: string;
43
43
 
44
44
  }
45
45
 
@@ -49,29 +49,29 @@ export interface AnnotationModel {
49
49
  export interface ArrowModel {
50
50
 
51
51
  /**
52
- * Sets and gets the type of the position to place the arrow in navigation lines.
53
- */
54
- position?: string;
52
+ * Sets and gets the type of the position to place the arrow in navigation lines.
53
+ */
54
+ position?: string;
55
55
 
56
56
  /**
57
- * Enables or disables the visibility state of the arrow in navigation line.
58
- */
59
- showArrow?: boolean;
57
+ * Enables or disables the visibility state of the arrow in navigation line.
58
+ */
59
+ showArrow?: boolean;
60
60
 
61
61
  /**
62
- * Sets and gets the size of the arrow in navigation line in maps.
63
- */
64
- size?: number;
62
+ * Sets and gets the size of the arrow in navigation line in maps.
63
+ */
64
+ size?: number;
65
65
 
66
66
  /**
67
- * Sets and gets the color for the arrow in navigation line.
68
- */
69
- color?: string;
67
+ * Sets and gets the color for the arrow in navigation line.
68
+ */
69
+ color?: string;
70
70
 
71
71
  /**
72
- * Sets and gets the offset value to position the arrow in navigation line.
73
- */
74
- offSet?: number;
72
+ * Sets and gets the offset value to position the arrow in navigation line.
73
+ */
74
+ offSet?: number;
75
75
 
76
76
  }
77
77
 
@@ -81,36 +81,36 @@ export interface ArrowModel {
81
81
  export interface FontModel {
82
82
 
83
83
  /**
84
- * Sets and gets the size for the text in data label, legend and other texts.
85
- */
86
- size?: string;
84
+ * Sets and gets the size for the text in data label, legend and other texts.
85
+ */
86
+ size?: string;
87
87
 
88
88
  /**
89
- * Sets and gets the color for the text in data label, legend and other texts in maps component.
90
- */
91
- color?: string;
89
+ * Sets and gets the color for the text in data label, legend and other texts in maps component.
90
+ */
91
+ color?: string;
92
92
 
93
93
  /**
94
- * Sets and gets the style of the text in data label, legend and other texts in maps component.
95
- */
96
- fontFamily?: string;
94
+ * Sets and gets the style of the text in data label, legend and other texts in maps component.
95
+ */
96
+ fontFamily?: string;
97
97
 
98
98
  /**
99
- * Sets and gets the font weight of the text in data label, legend and other texts in maps component.
100
- */
101
- fontWeight?: string;
99
+ * Sets and gets the font weight of the text in data label, legend and other texts in maps component.
100
+ */
101
+ fontWeight?: string;
102
102
 
103
103
  /**
104
- * Sets and gets the style of the text in data label, legend and other texts in maps component.
105
- */
106
- fontStyle?: string;
104
+ * Sets and gets the style of the text in data label, legend and other texts in maps component.
105
+ */
106
+ fontStyle?: string;
107
107
 
108
108
  /**
109
- * Sets and gets the opacity for the text in data label, legend and other texts in maps component.
110
- *
111
- * @default 1
112
- */
113
- opacity?: number;
109
+ * Sets and gets the opacity for the text in data label, legend and other texts in maps component.
110
+ *
111
+ * @default 1
112
+ */
113
+ opacity?: number;
114
114
 
115
115
  }
116
116
 
@@ -120,19 +120,19 @@ export interface FontModel {
120
120
  export interface BorderModel {
121
121
 
122
122
  /**
123
- * Sets and gets the color of the border. This property accepts the value in hex code and rgba string as a valid CSS color string.
124
- */
125
- color?: string;
123
+ * Sets and gets the color of the border. This property accepts the value in hex code and rgba string as a valid CSS color string.
124
+ */
125
+ color?: string;
126
126
 
127
127
  /**
128
- * Sets and gets the width of the border in maps.
129
- */
130
- width?: number;
128
+ * Sets and gets the width of the border in maps.
129
+ */
130
+ width?: number;
131
131
 
132
132
  /**
133
- * Sets and gets the opacity of the border in maps.
134
- */
135
- opacity?: number;
133
+ * Sets and gets the opacity of the border in maps.
134
+ */
135
+ opacity?: number;
136
136
 
137
137
  }
138
138
 
@@ -142,18 +142,18 @@ export interface BorderModel {
142
142
  export interface CenterPositionModel {
143
143
 
144
144
  /**
145
- * Sets and gets the latitude for the center position of maps.
146
- *
147
- * @default null
148
- */
149
- latitude?: number;
145
+ * Sets and gets the latitude for the center position of maps.
146
+ *
147
+ * @default null
148
+ */
149
+ latitude?: number;
150
150
 
151
151
  /**
152
- * Sets and gets the longitude for the center position of maps.
153
- *
154
- * @default null
155
- */
156
- longitude?: number;
152
+ * Sets and gets the longitude for the center position of maps.
153
+ *
154
+ * @default null
155
+ */
156
+ longitude?: number;
157
157
 
158
158
  }
159
159
 
@@ -163,47 +163,47 @@ export interface CenterPositionModel {
163
163
  export interface TooltipSettingsModel {
164
164
 
165
165
  /**
166
- * Enables or disables the tooltip visibility for layers, markers, and bubbles in maps.
167
- *
168
- * @default false
169
- */
170
- visible?: boolean;
166
+ * Enables or disables the tooltip visibility for layers, markers, and bubbles in maps.
167
+ *
168
+ * @default false
169
+ */
170
+ visible?: boolean;
171
171
 
172
172
  /**
173
- * Sets and gets the tooltip template for layers, markers, and bubbles in maps.
174
- *
175
- * @default ''
176
- */
177
- template?: string;
173
+ * Sets and gets the tooltip template for layers, markers, and bubbles in maps.
174
+ *
175
+ * @default ''
176
+ */
177
+ template?: string;
178
178
 
179
179
  /**
180
- * Sets and gets the color of the tooltip in layers, markers, and bubbles of maps.
181
- */
182
- fill?: string;
180
+ * Sets and gets the color of the tooltip in layers, markers, and bubbles of maps.
181
+ */
182
+ fill?: string;
183
183
 
184
184
  /**
185
- * Sets and gets the options for customizing the color and width of the border of the tooltip in layers, markers, and bubbles of maps.
186
- */
187
- border?: BorderModel;
185
+ * Sets and gets the options for customizing the color and width of the border of the tooltip in layers, markers, and bubbles of maps.
186
+ */
187
+ border?: BorderModel;
188
188
 
189
189
  /**
190
- * Sets and gets the options for customizing the style of the text in tooltip for layers, markers, and bubbles of maps.
191
- */
192
- textStyle?: FontModel;
190
+ * Sets and gets the options for customizing the style of the text in tooltip for layers, markers, and bubbles of maps.
191
+ */
192
+ textStyle?: FontModel;
193
193
 
194
194
  /**
195
- * Sets and gets the format of the tooltip in layers, markers, and bubbles of maps.
196
- *
197
- * @default null
198
- */
199
- format?: string;
195
+ * Sets and gets the format of the tooltip in layers, markers, and bubbles of maps.
196
+ *
197
+ * @default null
198
+ */
199
+ format?: string;
200
200
 
201
201
  /**
202
- * Sets and gets the value from the data source based on which the tooltip is visible on layers, markers, and bubbles of maps.
203
- *
204
- * @default null
205
- */
206
- valuePath?: string;
202
+ * Sets and gets the value from the data source based on which the tooltip is visible on layers, markers, and bubbles of maps.
203
+ *
204
+ * @default null
205
+ */
206
+ valuePath?: string;
207
207
 
208
208
  }
209
209
 
@@ -213,32 +213,32 @@ export interface TooltipSettingsModel {
213
213
  export interface MarginModel {
214
214
 
215
215
  /**
216
- * Sets and gets the left margin for maps.
217
- *
218
- * @default 10
219
- */
220
- left?: number;
216
+ * Sets and gets the left margin for maps.
217
+ *
218
+ * @default 10
219
+ */
220
+ left?: number;
221
221
 
222
222
  /**
223
- * Sets and gets the right margin for maps.
224
- *
225
- * @default 10
226
- */
227
- right?: number;
223
+ * Sets and gets the right margin for maps.
224
+ *
225
+ * @default 10
226
+ */
227
+ right?: number;
228
228
 
229
229
  /**
230
- * Sets and gets the top margin for maps.
231
- *
232
- * @default 10
233
- */
234
- top?: number;
230
+ * Sets and gets the top margin for maps.
231
+ *
232
+ * @default 10
233
+ */
234
+ top?: number;
235
235
 
236
236
  /**
237
- * Sets and gets the bottom margin for maps.
238
- *
239
- * @default 10
240
- */
241
- bottom?: number;
237
+ * Sets and gets the bottom margin for maps.
238
+ *
239
+ * @default 10
240
+ */
241
+ bottom?: number;
242
242
 
243
243
  }
244
244
 
@@ -248,25 +248,25 @@ export interface MarginModel {
248
248
  export interface ConnectorLineSettingsModel {
249
249
 
250
250
  /**
251
- * Sets and gets the color for connector line between the markers in marker cluster.
252
- *
253
- * @default '#000000'
254
- */
255
- color?: string;
251
+ * Sets and gets the color for connector line between the markers in marker cluster.
252
+ *
253
+ * @default '#000000'
254
+ */
255
+ color?: string;
256
256
 
257
257
  /**
258
- * Sets and gets the line width for connector line between the markers in marker cluster.
259
- *
260
- * @default 1
261
- */
262
- width?: number;
258
+ * Sets and gets the line width for connector line between the markers in marker cluster.
259
+ *
260
+ * @default 1
261
+ */
262
+ width?: number;
263
263
 
264
264
  /**
265
- * Sets and gets the opacity for connector line between the markers in marker cluster.
266
- *
267
- * @default 1
268
- */
269
- opacity?: number;
265
+ * Sets and gets the opacity for connector line between the markers in marker cluster.
266
+ *
267
+ * @default 1
268
+ */
269
+ opacity?: number;
270
270
 
271
271
  }
272
272
 
@@ -276,85 +276,85 @@ export interface ConnectorLineSettingsModel {
276
276
  export interface MarkerClusterSettingsModel {
277
277
 
278
278
  /**
279
- * Enables or disables the visibility state of the clustering of markers in the maps component.
280
- *
281
- * @default false
282
- */
283
- allowClustering?: boolean;
279
+ * Enables or disables the visibility state of the clustering of markers in the maps component.
280
+ *
281
+ * @default false
282
+ */
283
+ allowClustering?: boolean;
284
284
 
285
285
  /**
286
- * Sets and gets the options for customizing the color and width of the border of cluster in maps.
287
- */
288
- border?: BorderModel;
286
+ * Sets and gets the options for customizing the color and width of the border of cluster in maps.
287
+ */
288
+ border?: BorderModel;
289
289
 
290
290
  /**
291
- * Sets and gets the fill color of the cluster.
292
- *
293
- * @default '#D2691E'
294
- */
295
- fill?: string;
291
+ * Sets and gets the fill color of the cluster.
292
+ *
293
+ * @default '#D2691E'
294
+ */
295
+ fill?: string;
296
296
 
297
297
  /**
298
- * Sets and gets the opacity of the marker cluster.
299
- *
300
- * @default 1
301
- */
302
- opacity?: number;
298
+ * Sets and gets the opacity of the marker cluster.
299
+ *
300
+ * @default 1
301
+ */
302
+ opacity?: number;
303
303
 
304
304
  /**
305
- * Sets and gets shape for the cluster of markers.
306
- *
307
- * @default Rectangle
308
- */
309
- shape?: MarkerType;
305
+ * Sets and gets shape for the cluster of markers.
306
+ *
307
+ * @default Rectangle
308
+ */
309
+ shape?: MarkerType;
310
310
 
311
311
  /**
312
- * Sets and gets the width of the marker cluster in maps.
313
- *
314
- * @default 12
315
- */
316
- width?: number;
312
+ * Sets and gets the width of the marker cluster in maps.
313
+ *
314
+ * @default 12
315
+ */
316
+ width?: number;
317
317
 
318
318
  /**
319
- * Sets and gets the height of the marker cluster in maps.
320
- *
321
- * @default 12
322
- */
323
- height?: number;
319
+ * Sets and gets the height of the marker cluster in maps.
320
+ *
321
+ * @default 12
322
+ */
323
+ height?: number;
324
324
 
325
325
  /**
326
- * Sets and gets the offset position for the marker cluster in maps.
327
- */
328
- offset?: Point;
326
+ * Sets and gets the offset position for the marker cluster in maps.
327
+ */
328
+ offset?: Point;
329
329
 
330
330
  /**
331
- * Sets and gets the URL path for the marker cluster when the cluster shape is set as image in maps.
332
- */
333
- imageUrl?: string;
331
+ * Sets and gets the URL path for the marker cluster when the cluster shape is set as image in maps.
332
+ */
333
+ imageUrl?: string;
334
334
 
335
335
  /**
336
- * Sets and gets the dash array for the marker cluster in maps.
337
- *
338
- * @default ''
339
- */
340
- dashArray?: string;
336
+ * Sets and gets the dash array for the marker cluster in maps.
337
+ *
338
+ * @default ''
339
+ */
340
+ dashArray?: string;
341
341
 
342
342
  /**
343
- * Sets and gets the options to customize the text in marker cluster.
344
- */
345
- labelStyle?: FontModel;
343
+ * Sets and gets the options to customize the text in marker cluster.
344
+ */
345
+ labelStyle?: FontModel;
346
346
 
347
347
  /**
348
- * Enables or disables the cluster expand when many markers are in same location.
349
- *
350
- * @default false
351
- */
352
- allowClusterExpand?: boolean;
348
+ * Enables or disables the cluster expand when many markers are in same location.
349
+ *
350
+ * @default false
351
+ */
352
+ allowClusterExpand?: boolean;
353
353
 
354
354
  /**
355
- * Sets and gets the options to customize the connector line in cluster separating the markers.
356
- */
357
- connectorLineSettings?: ConnectorLineSettingsModel;
355
+ * Sets and gets the options to customize the connector line in cluster separating the markers.
356
+ */
357
+ connectorLineSettings?: ConnectorLineSettingsModel;
358
358
 
359
359
  }
360
360
 
@@ -371,62 +371,62 @@ export interface MarkerClusterDataModel {
371
371
  export interface ColorMappingSettingsModel {
372
372
 
373
373
  /**
374
- * Sets and gets the value from where the range color-mapping starts.
375
- *
376
- * @aspDefaultValueIgnore
377
- * @default null
378
- */
379
- from?: number;
374
+ * Sets and gets the value from where the range color-mapping starts.
375
+ *
376
+ * @aspDefaultValueIgnore
377
+ * @default null
378
+ */
379
+ from?: number;
380
380
 
381
381
  /**
382
- * Sets and gets the value to where the range color-mapping ends.
383
- *
384
- * @aspDefaultValueIgnore
385
- * @default null
386
- */
387
- to?: number;
382
+ * Sets and gets the value to where the range color-mapping ends.
383
+ *
384
+ * @aspDefaultValueIgnore
385
+ * @default null
386
+ */
387
+ to?: number;
388
388
 
389
389
  /**
390
- * Sets and gets the value for the color-mapping from the data source.
391
- *
392
- * @default null
393
- */
394
- value?: string;
390
+ * Sets and gets the value for the color-mapping from the data source.
391
+ *
392
+ * @default null
393
+ */
394
+ value?: string;
395
395
 
396
396
  /**
397
- * Sets and gets the color for the color-mapping in maps.
398
- *
399
- * @default null
400
- */
401
- color?: string | string[];
397
+ * Sets and gets the color for the color-mapping in maps.
398
+ *
399
+ * @default null
400
+ */
401
+ color?: string | string[];
402
402
 
403
403
  /**
404
- * Sets and gets the minimum opacity for the color-mapping in maps.
405
- *
406
- * @default null
407
- */
408
- minOpacity?: number;
404
+ * Sets and gets the minimum opacity for the color-mapping in maps.
405
+ *
406
+ * @default null
407
+ */
408
+ minOpacity?: number;
409
409
 
410
410
  /**
411
- * Sets and gets the maximum opacity for the color-mapping in maps.
412
- *
413
- * @default null
414
- */
415
- maxOpacity?: number;
411
+ * Sets and gets the maximum opacity for the color-mapping in maps.
412
+ *
413
+ * @default null
414
+ */
415
+ maxOpacity?: number;
416
416
 
417
417
  /**
418
- * Sets and gets the label for the color-mapping from the data source in maps.
419
- *
420
- * @default null
421
- */
422
- label?: string;
418
+ * Sets and gets the label for the color-mapping from the data source in maps.
419
+ *
420
+ * @default null
421
+ */
422
+ label?: string;
423
423
 
424
424
  /**
425
- * Enables or disables the visibility state of legend for the color-mapping shapes in maps.
426
- *
427
- * @default true
428
- */
429
- showLegend?: boolean;
425
+ * Enables or disables the visibility state of legend for the color-mapping shapes in maps.
426
+ *
427
+ * @default true
428
+ */
429
+ showLegend?: boolean;
430
430
 
431
431
  }
432
432
 
@@ -436,18 +436,18 @@ export interface ColorMappingSettingsModel {
436
436
  export interface InitialMarkerSelectionSettingsModel {
437
437
 
438
438
  /**
439
- * To initially select the marker latitude.
440
- *
441
- * @default null
442
- */
443
- latitude?: number;
439
+ * To initially select the marker latitude.
440
+ *
441
+ * @default null
442
+ */
443
+ latitude?: number;
444
444
 
445
445
  /**
446
- * To initially select the marker longitude
447
- *
448
- * @default null
449
- */
450
- longitude?: number;
446
+ * To initially select the marker longitude
447
+ *
448
+ * @default null
449
+ */
450
+ longitude?: number;
451
451
 
452
452
  }
453
453
 
@@ -457,18 +457,18 @@ export interface InitialMarkerSelectionSettingsModel {
457
457
  export interface InitialShapeSelectionSettingsModel {
458
458
 
459
459
  /**
460
- * Sets and gets the property name from the data source in maps.
461
- *
462
- * @default null
463
- */
464
- shapePath?: string;
460
+ * Sets and gets the property name from the data source in maps.
461
+ *
462
+ * @default null
463
+ */
464
+ shapePath?: string;
465
465
 
466
466
  /**
467
- * Sets and gets the value for the shape from data source in maps.
468
- *
469
- * @default null
470
- */
471
- shapeValue?: string;
467
+ * Sets and gets the value for the shape from data source in maps.
468
+ *
469
+ * @default null
470
+ */
471
+ shapeValue?: string;
472
472
 
473
473
  }
474
474
 
@@ -478,37 +478,37 @@ export interface InitialShapeSelectionSettingsModel {
478
478
  export interface SelectionSettingsModel {
479
479
 
480
480
  /**
481
- * Enables or disables the selection for the layers, markers in maps.
482
- *
483
- * @default false
484
- */
485
- enable?: boolean;
481
+ * Enables or disables the selection for the layers, markers in maps.
482
+ *
483
+ * @default false
484
+ */
485
+ enable?: boolean;
486
486
 
487
487
  /**
488
- * Sets and gets the color for the shape that is selected.
489
- *
490
- * @default null
491
- */
492
- fill?: string;
488
+ * Sets and gets the color for the shape that is selected.
489
+ *
490
+ * @default null
491
+ */
492
+ fill?: string;
493
493
 
494
494
  /**
495
- * Sets and gets the opacity for the shape that is selected.
496
- *
497
- * @default 1
498
- */
499
- opacity?: number;
495
+ * Sets and gets the opacity for the shape that is selected.
496
+ *
497
+ * @default 1
498
+ */
499
+ opacity?: number;
500
500
 
501
501
  /**
502
- * Enables or disables the selection for many shapes in maps.
503
- *
504
- * @default false
505
- */
506
- enableMultiSelect?: boolean;
502
+ * Enables or disables the selection for many shapes in maps.
503
+ *
504
+ * @default false
505
+ */
506
+ enableMultiSelect?: boolean;
507
507
 
508
508
  /**
509
- * Sets and gets the options for customizing the color and width of the border of selected shapes in maps.
510
- */
511
- border?: BorderModel;
509
+ * Sets and gets the options for customizing the color and width of the border of selected shapes in maps.
510
+ */
511
+ border?: BorderModel;
512
512
 
513
513
  }
514
514
 
@@ -518,30 +518,30 @@ export interface SelectionSettingsModel {
518
518
  export interface HighlightSettingsModel {
519
519
 
520
520
  /**
521
- * Sets and gets the color for the shapes on which the mouse has hovered in maps.
522
- *
523
- * @default null
524
- */
525
- fill?: string;
521
+ * Sets and gets the color for the shapes on which the mouse has hovered in maps.
522
+ *
523
+ * @default null
524
+ */
525
+ fill?: string;
526
526
 
527
527
  /**
528
- * Enables or disables the highlight settings for maps.
529
- *
530
- * @default false
531
- */
532
- enable?: boolean;
528
+ * Enables or disables the highlight settings for maps.
529
+ *
530
+ * @default false
531
+ */
532
+ enable?: boolean;
533
533
 
534
534
  /**
535
- * Sets and gets the opacity for the highlighted shapes in maps.
536
- *
537
- * @default 1
538
- */
539
- opacity?: number;
535
+ * Sets and gets the opacity for the highlighted shapes in maps.
536
+ *
537
+ * @default 1
538
+ */
539
+ opacity?: number;
540
540
 
541
541
  /**
542
- * Sets and gets the options for customizing the color and width of the border for the highlighted shapes in maps.
543
- */
544
- border?: BorderModel;
542
+ * Sets and gets the options for customizing the color and width of the border for the highlighted shapes in maps.
543
+ */
544
+ border?: BorderModel;
545
545
 
546
546
  }
547
547
 
@@ -551,67 +551,67 @@ export interface HighlightSettingsModel {
551
551
  export interface NavigationLineSettingsModel {
552
552
 
553
553
  /**
554
- * Enables or disables the navigation lines to be drawn in maps.
555
- *
556
- * @default false
557
- */
558
- visible?: boolean;
554
+ * Enables or disables the navigation lines to be drawn in maps.
555
+ *
556
+ * @default false
557
+ */
558
+ visible?: boolean;
559
559
 
560
560
  /**
561
- * Sets and gets the width of the navigation lines in maps.
562
- *
563
- * @default 1
564
- */
565
- width?: number;
561
+ * Sets and gets the width of the navigation lines in maps.
562
+ *
563
+ * @default 1
564
+ */
565
+ width?: number;
566
566
 
567
567
  /**
568
- * Sets and gets the longitude for the navigation lines drawn in maps.
569
- *
570
- * @default []
571
- */
572
- longitude?: number[];
568
+ * Sets and gets the longitude for the navigation lines drawn in maps.
569
+ *
570
+ * @default []
571
+ */
572
+ longitude?: number[];
573
573
 
574
574
  /**
575
- * Sets and gets the latitude value for the navigation lines drawn in maps.
576
- *
577
- * @default []
578
- */
579
- latitude?: number[];
575
+ * Sets and gets the latitude value for the navigation lines drawn in maps.
576
+ *
577
+ * @default []
578
+ */
579
+ latitude?: number[];
580
580
 
581
581
  /**
582
- * Sets and gets the dash-array for the navigation lines drawn in maps.
583
- *
584
- * @default ''
585
- */
586
- dashArray?: string;
582
+ * Sets and gets the dash-array for the navigation lines drawn in maps.
583
+ *
584
+ * @default ''
585
+ */
586
+ dashArray?: string;
587
587
 
588
588
  /**
589
- * Sets and gets the color for the navigation lines in maps.
590
- *
591
- */
592
- color?: string;
589
+ * Sets and gets the color for the navigation lines in maps.
590
+ *
591
+ */
592
+ color?: string;
593
593
 
594
594
  /**
595
- * Sets and gets the angle of curve connecting different locations in maps.
596
- *
597
- * @default 0
598
- */
599
- angle?: number;
595
+ * Sets and gets the angle of curve connecting different locations in maps.
596
+ *
597
+ * @default 0
598
+ */
599
+ angle?: number;
600
600
 
601
601
  /**
602
- * Sets and gets the options to customize the arrow for the navigation line in maps.
603
- */
604
- arrowSettings?: ArrowModel;
602
+ * Sets and gets the options to customize the arrow for the navigation line in maps.
603
+ */
604
+ arrowSettings?: ArrowModel;
605
605
 
606
606
  /**
607
- * Sets and gets the selection settings of the navigation line in maps.
608
- */
609
- selectionSettings?: SelectionSettingsModel;
607
+ * Sets and gets the selection settings of the navigation line in maps.
608
+ */
609
+ selectionSettings?: SelectionSettingsModel;
610
610
 
611
611
  /**
612
- * Sets and gets the highlight settings of the navigation line in maps.
613
- */
614
- highlightSettings?: HighlightSettingsModel;
612
+ * Sets and gets the highlight settings of the navigation line in maps.
613
+ */
614
+ highlightSettings?: HighlightSettingsModel;
615
615
 
616
616
  }
617
617
 
@@ -621,120 +621,120 @@ export interface NavigationLineSettingsModel {
621
621
  export interface BubbleSettingsModel {
622
622
 
623
623
  /**
624
- * Sets and gets the options to customize the color and width of the border for the bubble in maps.
625
- */
626
- border?: BorderModel;
624
+ * Sets and gets the options to customize the color and width of the border for the bubble in maps.
625
+ */
626
+ border?: BorderModel;
627
627
 
628
628
  /**
629
- * Enables or disables the visibility state of the bubbles in maps.
630
- *
631
- * @default false
632
- */
633
- visible?: boolean;
629
+ * Enables or disables the visibility state of the bubbles in maps.
630
+ *
631
+ * @default false
632
+ */
633
+ visible?: boolean;
634
634
 
635
635
  /**
636
- * Sets and gets the data source for the bubble.
637
- * The data source must contain the size value of the bubble that can be bound to the bubble
638
- * of the Maps using the valuePath property in the bubbleSettings.
639
- * The data source can contain data such as color, and the other information that can be bound to the bubble, and tooltip of the bubble.
640
- *
641
- * @isObservable true
642
- * @default []
643
- */
644
- dataSource?: Object[] | DataManager;
636
+ * Sets and gets the data source for the bubble.
637
+ * The data source must contain the size value of the bubble that can be bound to the bubble
638
+ * of the Maps using the valuePath property in the bubbleSettings.
639
+ * The data source can contain data such as color, and the other information that can be bound to the bubble, and tooltip of the bubble.
640
+ *
641
+ * @isObservable true
642
+ * @default []
643
+ */
644
+ dataSource?: Object[] | DataManager;
645
645
 
646
646
  /**
647
- * Sets and gets the query to select particular data from the bubble data.
648
- * This property is applicable only when the data source is created by data manager.
649
- *
650
- * @default null
651
- */
652
- query?: Query;
647
+ * Sets and gets the query to select particular data from the bubble data.
648
+ * This property is applicable only when the data source is created by data manager.
649
+ *
650
+ * @default null
651
+ */
652
+ query?: Query;
653
653
 
654
654
  /**
655
- * Sets and gets the duration for the animation for bubble in maps.
656
- *
657
- * @default 1000
658
- */
659
- animationDuration?: number;
655
+ * Sets and gets the duration for the animation for bubble in maps.
656
+ *
657
+ * @default 1000
658
+ */
659
+ animationDuration?: number;
660
660
 
661
661
  /**
662
- * Sets and gets the delay in animation for bubble in maps.
663
- *
664
- * @default 0
665
- */
666
- animationDelay?: number;
662
+ * Sets and gets the delay in animation for bubble in maps.
663
+ *
664
+ * @default 0
665
+ */
666
+ animationDelay?: number;
667
667
 
668
668
  /**
669
- * Sets and gets the color for the bubble in maps.
670
- *
671
- * @default ''
672
- */
673
- fill?: string;
669
+ * Sets and gets the color for the bubble in maps.
670
+ *
671
+ * @default ''
672
+ */
673
+ fill?: string;
674
674
 
675
675
  /**
676
- * Sets and gets the minimum radius for the bubble in maps.
677
- *
678
- * @default 10
679
- */
680
- minRadius?: number;
676
+ * Sets and gets the minimum radius for the bubble in maps.
677
+ *
678
+ * @default 10
679
+ */
680
+ minRadius?: number;
681
681
 
682
682
  /**
683
- * Sets and gets the maximum radius for the bubble in maps.
684
- *
685
- * @default 20
686
- */
687
- maxRadius?: number;
683
+ * Sets and gets the maximum radius for the bubble in maps.
684
+ *
685
+ * @default 20
686
+ */
687
+ maxRadius?: number;
688
688
 
689
689
  /**
690
- * Sets and gets the opacity of the bubble in maps.
691
- *
692
- * @default 1
693
- */
694
- opacity?: number;
690
+ * Sets and gets the opacity of the bubble in maps.
691
+ *
692
+ * @default 1
693
+ */
694
+ opacity?: number;
695
695
 
696
696
  /**
697
- * Sets and gets the value from the data source of bubble settings for the bubble to be rendered in maps.
698
- *
699
- * @default null
700
- */
701
- valuePath?: string;
697
+ * Sets and gets the value from the data source of bubble settings for the bubble to be rendered in maps.
698
+ *
699
+ * @default null
700
+ */
701
+ valuePath?: string;
702
702
 
703
703
  /**
704
- * Sets and gets the type of the bubble in maps.
705
- *
706
- * @default Circle
707
- */
708
- bubbleType?: BubbleType;
704
+ * Sets and gets the type of the bubble in maps.
705
+ *
706
+ * @default Circle
707
+ */
708
+ bubbleType?: BubbleType;
709
709
 
710
710
  /**
711
- * Sets and gets the value from the data source of bubble settings for the color of the bubble in maps.
712
- *
713
- * @default null
714
- */
715
- colorValuePath?: string;
711
+ * Sets and gets the value from the data source of bubble settings for the color of the bubble in maps.
712
+ *
713
+ * @default null
714
+ */
715
+ colorValuePath?: string;
716
716
 
717
717
  /**
718
- * Sets and gets the color-mapping for the bubble in maps.
719
- *
720
- * @default []
721
- */
722
- colorMapping?: ColorMappingSettingsModel[];
718
+ * Sets and gets the color-mapping for the bubble in maps.
719
+ *
720
+ * @default []
721
+ */
722
+ colorMapping?: ColorMappingSettingsModel[];
723
723
 
724
724
  /**
725
- * Sets and gets the options to customize the tooltip for the bubbles in maps.
726
- */
727
- tooltipSettings?: TooltipSettingsModel;
725
+ * Sets and gets the options to customize the tooltip for the bubbles in maps.
726
+ */
727
+ tooltipSettings?: TooltipSettingsModel;
728
728
 
729
729
  /**
730
- * Sets and gets the selection settings for the bubble in maps.
731
- */
732
- selectionSettings?: SelectionSettingsModel;
730
+ * Sets and gets the selection settings for the bubble in maps.
731
+ */
732
+ selectionSettings?: SelectionSettingsModel;
733
733
 
734
734
  /**
735
- * Sets and gets the highlight settings for the bubble in maps.
736
- */
737
- highlightSettings?: HighlightSettingsModel;
735
+ * Sets and gets the highlight settings for the bubble in maps.
736
+ */
737
+ highlightSettings?: HighlightSettingsModel;
738
738
 
739
739
  }
740
740
 
@@ -744,18 +744,18 @@ export interface BubbleSettingsModel {
744
744
  export interface CommonTitleSettingsModel {
745
745
 
746
746
  /**
747
- * Sets and gets the text for the title in maps.
748
- *
749
- * @default ''
750
- */
751
- text?: string;
747
+ * Sets and gets the text for the title in maps.
748
+ *
749
+ * @default ''
750
+ */
751
+ text?: string;
752
752
 
753
753
  /**
754
- * Sets and gets the description of the title in maps.
755
- *
756
- * @default ''
757
- */
758
- description?: string;
754
+ * Sets and gets the description of the title in maps.
755
+ *
756
+ * @default ''
757
+ */
758
+ description?: string;
759
759
 
760
760
  }
761
761
 
@@ -765,16 +765,16 @@ export interface CommonTitleSettingsModel {
765
765
  export interface SubTitleSettingsModel extends CommonTitleSettingsModel{
766
766
 
767
767
  /**
768
- * Sets and gets the options for customizing the text in the subtitle for maps.
769
- */
770
- textStyle?: FontModel;
768
+ * Sets and gets the options for customizing the text in the subtitle for maps.
769
+ */
770
+ textStyle?: FontModel;
771
771
 
772
772
  /**
773
- * Sets and gets the alignment of the subtitle for maps.
774
- *
775
- * @default Center
776
- */
777
- alignment?: Alignment;
773
+ * Sets and gets the alignment of the subtitle for maps.
774
+ *
775
+ * @default Center
776
+ */
777
+ alignment?: Alignment;
778
778
 
779
779
  }
780
780
 
@@ -784,21 +784,21 @@ export interface SubTitleSettingsModel extends CommonTitleSettingsModel{
784
784
  export interface TitleSettingsModel extends CommonTitleSettingsModel{
785
785
 
786
786
  /**
787
- * Sets and gets the options for customizing the text of the title in Maps.
788
- */
789
- textStyle?: FontModel;
787
+ * Sets and gets the options for customizing the text of the title in Maps.
788
+ */
789
+ textStyle?: FontModel;
790
790
 
791
791
  /**
792
- * Sets and gets the alignment for the text in the title for the maps.
793
- *
794
- * @default Center
795
- */
796
- alignment?: Alignment;
792
+ * Sets and gets the alignment for the text in the title for the maps.
793
+ *
794
+ * @default Center
795
+ */
796
+ alignment?: Alignment;
797
797
 
798
798
  /**
799
- * Sets and gets the subtitle for the maps.
800
- */
801
- subtitleSettings?: SubTitleSettingsModel;
799
+ * Sets and gets the subtitle for the maps.
800
+ */
801
+ subtitleSettings?: SubTitleSettingsModel;
802
802
 
803
803
  }
804
804
 
@@ -808,125 +808,125 @@ export interface TitleSettingsModel extends CommonTitleSettingsModel{
808
808
  export interface ZoomSettingsModel {
809
809
 
810
810
  /**
811
- * Enables or disables the zooming operation in the maps component.
812
- *
813
- * @default false
814
- */
815
- enable?: boolean;
811
+ * Enables or disables the zooming operation in the maps component.
812
+ *
813
+ * @default false
814
+ */
815
+ enable?: boolean;
816
816
 
817
817
  /**
818
- * Enables or disables the panning operation in the maps component.
819
- *
820
- * @default true
821
- */
822
- enablePanning?: boolean;
818
+ * Enables or disables the panning operation in the maps component.
819
+ *
820
+ * @default true
821
+ */
822
+ enablePanning?: boolean;
823
823
 
824
824
  /**
825
- * Enables or disables the selection zooming operation in the maps component.
826
- *
827
- * @default true
828
- */
829
- enableSelectionZooming?: boolean;
825
+ * Enables or disables the selection zooming operation in the maps component.
826
+ *
827
+ * @default true
828
+ */
829
+ enableSelectionZooming?: boolean;
830
830
 
831
831
  /**
832
- * Sets and gets the orientation of the zoom toolbar.
833
- *
834
- * @default Horizontal
835
- */
836
- toolBarOrientation?: Orientation;
832
+ * Sets and gets the orientation of the zoom toolbar.
833
+ *
834
+ * @default Horizontal
835
+ */
836
+ toolBarOrientation?: Orientation;
837
837
 
838
838
  /**
839
- * Sets and gets the color for the toolbar in maps.
840
- */
841
- color?: string;
839
+ * Sets and gets the color for the toolbar in maps.
840
+ */
841
+ color?: string;
842
842
 
843
843
  /**
844
- * Sets and gets the color for the zooming toolbar when the mouse has hovered on toolbar element in maps.
845
- */
846
- highlightColor?: string;
844
+ * Sets and gets the color for the zooming toolbar when the mouse has hovered on toolbar element in maps.
845
+ */
846
+ highlightColor?: string;
847
847
 
848
848
  /**
849
- * Sets and gets the color for the zooming toolbar when clicking the zooming toolbar in maps.
850
- */
851
- selectionColor?: string;
849
+ * Sets and gets the color for the zooming toolbar when clicking the zooming toolbar in maps.
850
+ */
851
+ selectionColor?: string;
852
852
 
853
853
  /**
854
- * Sets and gets the position type of toolbar when it is placed horizontally.
855
- *
856
- * @default Far
857
- */
858
- horizontalAlignment?: Alignment;
854
+ * Sets and gets the position type of toolbar when it is placed horizontally.
855
+ *
856
+ * @default Far
857
+ */
858
+ horizontalAlignment?: Alignment;
859
859
 
860
860
  /**
861
- * Sets and gets the position type of toolbar when it is placed vertically.
862
- *
863
- * @default Near
864
- */
865
- verticalAlignment?: Alignment;
861
+ * Sets and gets the position type of toolbar when it is placed vertically.
862
+ *
863
+ * @default Near
864
+ */
865
+ verticalAlignment?: Alignment;
866
866
 
867
867
  /**
868
- * Sets and gets the items that are to be shown in the zooming toolbar in maps.
869
- */
870
- toolbars?: string[];
868
+ * Sets and gets the items that are to be shown in the zooming toolbar in maps.
869
+ */
870
+ toolbars?: string[];
871
871
 
872
872
  /**
873
- * Enables or disables the mouse wheel zooming in maps.
874
- *
875
- * @default true
876
- */
877
- mouseWheelZoom?: boolean;
873
+ * Enables or disables the mouse wheel zooming in maps.
874
+ *
875
+ * @default true
876
+ */
877
+ mouseWheelZoom?: boolean;
878
878
 
879
879
  /**
880
- * Enables or disables the double click zooming in maps.
881
- *
882
- * @default false
883
- */
884
- doubleClickZoom?: boolean;
880
+ * Enables or disables the double click zooming in maps.
881
+ *
882
+ * @default false
883
+ */
884
+ doubleClickZoom?: boolean;
885
885
 
886
886
  /**
887
- * Enables or disables the pinch zooming in maps.
888
- *
889
- * @default true
890
- */
891
- pinchZooming?: boolean;
887
+ * Enables or disables the pinch zooming in maps.
888
+ *
889
+ * @default true
890
+ */
891
+ pinchZooming?: boolean;
892
892
 
893
893
  /**
894
- * Enables or disables the zooming on clicking the shapes in maps.
895
- *
896
- * @default false
897
- */
898
- zoomOnClick?: boolean;
894
+ * Enables or disables the zooming on clicking the shapes in maps.
895
+ *
896
+ * @default false
897
+ */
898
+ zoomOnClick?: boolean;
899
899
 
900
900
  /**
901
- * Sets and gets the factor of zoom to be displayed while rendering the maps.
902
- *
903
- * @default 1
904
- */
905
- zoomFactor?: number;
901
+ * Sets and gets the factor of zoom to be displayed while rendering the maps.
902
+ *
903
+ * @default 1
904
+ */
905
+ zoomFactor?: number;
906
906
 
907
907
  /**
908
- * Sets and gets the maximum zooming value in maps.
909
- *
910
- * @default 10
911
- */
912
- maxZoom?: number;
908
+ * Sets and gets the maximum zooming value in maps.
909
+ *
910
+ * @default 10
911
+ */
912
+ maxZoom?: number;
913
913
 
914
914
  /**
915
- * Sets and gets the minimum zooming value in maps.
916
- *
917
- * @default 1
918
- */
919
- minZoom?: number;
915
+ * Sets and gets the minimum zooming value in maps.
916
+ *
917
+ * @default 1
918
+ */
919
+ minZoom?: number;
920
920
 
921
921
  /**
922
- * Enables or disables the zoom based on the marker position while rendering the maps.
923
- */
924
- shouldZoomInitially?: boolean;
922
+ * Enables or disables the zoom based on the marker position while rendering the maps.
923
+ */
924
+ shouldZoomInitially?: boolean;
925
925
 
926
926
  /**
927
- * Enables or disables the zoom to set the initial State.
928
- */
929
- resetToInitial?: boolean;
927
+ * Enables or disables the zoom to set the initial State.
928
+ */
929
+ resetToInitial?: boolean;
930
930
 
931
931
  }
932
932
 
@@ -936,37 +936,37 @@ export interface ZoomSettingsModel {
936
936
  export interface ToggleLegendSettingsModel {
937
937
 
938
938
  /**
939
- * Enables or disables the legend to be toggled.
940
- *
941
- * @default false
942
- */
943
- enable?: boolean;
939
+ * Enables or disables the legend to be toggled.
940
+ *
941
+ * @default false
942
+ */
943
+ enable?: boolean;
944
944
 
945
945
  /**
946
- * Enables or disables the property of the shape settings to be displayed while clicking the legend.
947
- *
948
- * @default true
949
- */
950
- applyShapeSettings?: boolean;
946
+ * Enables or disables the property of the shape settings to be displayed while clicking the legend.
947
+ *
948
+ * @default true
949
+ */
950
+ applyShapeSettings?: boolean;
951
951
 
952
952
  /**
953
- * Sets and gets the opacity for the shape for which the legend is selected.
954
- *
955
- * @default 1
956
- */
957
- opacity?: number;
953
+ * Sets and gets the opacity for the shape for which the legend is selected.
954
+ *
955
+ * @default 1
956
+ */
957
+ opacity?: number;
958
958
 
959
959
  /**
960
- * Sets and gets the color of the shape for which the legend is selected.
961
- *
962
- * @default ''
963
- */
964
- fill?: string;
960
+ * Sets and gets the color of the shape for which the legend is selected.
961
+ *
962
+ * @default ''
963
+ */
964
+ fill?: string;
965
965
 
966
966
  /**
967
- * Sets and gets the options to customize the color and width of the border for the shape in maps.
968
- */
969
- border?: BorderModel;
967
+ * Sets and gets the options to customize the color and width of the border for the shape in maps.
968
+ */
969
+ border?: BorderModel;
970
970
 
971
971
  }
972
972
 
@@ -976,196 +976,196 @@ export interface ToggleLegendSettingsModel {
976
976
  export interface LegendSettingsModel {
977
977
 
978
978
  /**
979
- * Enables or disables to render the legend item based on the shapes from the data source of markers.
980
- *
981
- * @default false
982
- */
983
- useMarkerShape?: boolean;
979
+ * Enables or disables to render the legend item based on the shapes from the data source of markers.
980
+ *
981
+ * @default false
982
+ */
983
+ useMarkerShape?: boolean;
984
984
 
985
985
  /**
986
- * Enables or disables the toggle visibility for legend in maps.
987
- *
988
- * @default false
989
- */
990
- toggleVisibility?: boolean;
986
+ * Enables or disables the toggle visibility for legend in maps.
987
+ *
988
+ * @default false
989
+ */
990
+ toggleVisibility?: boolean;
991
991
 
992
992
  /**
993
- * Enables or disables the visibility state of the legend in maps.
994
- *
995
- * @default false
996
- */
997
- visible?: boolean;
993
+ * Enables or disables the visibility state of the legend in maps.
994
+ *
995
+ * @default false
996
+ */
997
+ visible?: boolean;
998
998
 
999
999
  /**
1000
- * Sets and gets the background color for the legend in maps.
1001
- *
1002
- * @default 'transparent'
1003
- */
1004
- background?: string;
1000
+ * Sets and gets the background color for the legend in maps.
1001
+ *
1002
+ * @default 'transparent'
1003
+ */
1004
+ background?: string;
1005
1005
 
1006
1006
  /**
1007
- * Sets and gets the type of the legend in maps.
1008
- *
1009
- * @default Layers
1010
- */
1011
- type?: LegendType;
1007
+ * Sets and gets the type of the legend in maps.
1008
+ *
1009
+ * @default Layers
1010
+ */
1011
+ type?: LegendType;
1012
1012
 
1013
1013
  /**
1014
- * Enables or disables the visibility of the inverted pointer in interactive legend in maps.
1015
- */
1016
- invertedPointer?: boolean;
1014
+ * Enables or disables the visibility of the inverted pointer in interactive legend in maps.
1015
+ */
1016
+ invertedPointer?: boolean;
1017
1017
 
1018
1018
  /**
1019
- * Sets and gets the position of the label in legend.
1020
- *
1021
- * @default After
1022
- */
1023
- labelPosition?: LabelPosition;
1019
+ * Sets and gets the position of the label in legend.
1020
+ *
1021
+ * @default After
1022
+ */
1023
+ labelPosition?: LabelPosition;
1024
1024
 
1025
1025
  /**
1026
- * Sets and gets the display mode for the label in legend.
1027
- *
1028
- * @default None
1029
- */
1030
- labelDisplayMode?: LabelIntersectAction;
1026
+ * Sets and gets the display mode for the label in legend.
1027
+ *
1028
+ * @default None
1029
+ */
1030
+ labelDisplayMode?: LabelIntersectAction;
1031
1031
 
1032
1032
  /**
1033
- * Sets and gets the shape of the legend in maps.
1034
- *
1035
- * @default Circle
1036
- */
1037
- shape?: LegendShape;
1033
+ * Sets and gets the shape of the legend in maps.
1034
+ *
1035
+ * @default Circle
1036
+ */
1037
+ shape?: LegendShape;
1038
1038
 
1039
1039
  /**
1040
- * Sets and gets the width of the legend in maps.
1041
- *
1042
- * @default ''
1043
- */
1044
- width?: string;
1040
+ * Sets and gets the width of the legend in maps.
1041
+ *
1042
+ * @default ''
1043
+ */
1044
+ width?: string;
1045
1045
 
1046
1046
  /**
1047
- * Sets and gets the height of the legend in maps.
1048
- *
1049
- * @default ''
1050
- */
1051
- height?: string;
1047
+ * Sets and gets the height of the legend in maps.
1048
+ *
1049
+ * @default ''
1050
+ */
1051
+ height?: string;
1052
1052
 
1053
1053
  /**
1054
- * Sets and gets the options for customizing the text styles for the legend in maps.
1055
- */
1056
- textStyle?: FontModel;
1054
+ * Sets and gets the options for customizing the text styles for the legend in maps.
1055
+ */
1056
+ textStyle?: FontModel;
1057
1057
 
1058
1058
  /**
1059
- * Sets and gets the width of the shapes in legend.
1060
- *
1061
- * @default 15
1062
- */
1063
- shapeWidth?: number;
1059
+ * Sets and gets the width of the shapes in legend.
1060
+ *
1061
+ * @default 15
1062
+ */
1063
+ shapeWidth?: number;
1064
1064
 
1065
1065
  /**
1066
- * Sets and gets the width of the shapes in legend.
1067
- *
1068
- * @default 15
1069
- */
1070
- shapeHeight?: number;
1066
+ * Sets and gets the width of the shapes in legend.
1067
+ *
1068
+ * @default 15
1069
+ */
1070
+ shapeHeight?: number;
1071
1071
 
1072
1072
  /**
1073
- * Sets and gets the padding for the shapes in legend.
1074
- *
1075
- * @default 10
1076
- */
1077
- shapePadding?: number;
1073
+ * Sets and gets the padding for the shapes in legend.
1074
+ *
1075
+ * @default 10
1076
+ */
1077
+ shapePadding?: number;
1078
1078
 
1079
1079
  /**
1080
- * Sets and gets the options for customizing the color and width of the legend border.
1081
- */
1082
- border?: BorderModel;
1080
+ * Sets and gets the options for customizing the color and width of the legend border.
1081
+ */
1082
+ border?: BorderModel;
1083
1083
 
1084
1084
  /**
1085
- * Sets and gets the options for customizing the color and width of the border for the shape in legend.
1086
- */
1087
- shapeBorder?: BorderModel;
1085
+ * Sets and gets the options for customizing the color and width of the border for the shape in legend.
1086
+ */
1087
+ shapeBorder?: BorderModel;
1088
1088
 
1089
1089
  /**
1090
- * Sets and gets the title for the legend in maps.
1091
- */
1092
- title?: CommonTitleSettingsModel;
1090
+ * Sets and gets the title for the legend in maps.
1091
+ */
1092
+ title?: CommonTitleSettingsModel;
1093
1093
 
1094
1094
  /**
1095
- * Sets and gets the options for customizing the style of the title for the legend in maps.
1096
- */
1097
- titleStyle?: FontModel;
1095
+ * Sets and gets the options for customizing the style of the title for the legend in maps.
1096
+ */
1097
+ titleStyle?: FontModel;
1098
1098
 
1099
1099
  /**
1100
- * Sets and gets the position of the legend in maps.
1101
- *
1102
- * @default Bottom
1103
- */
1104
- position?: LegendPosition;
1100
+ * Sets and gets the position of the legend in maps.
1101
+ *
1102
+ * @default Bottom
1103
+ */
1104
+ position?: LegendPosition;
1105
1105
 
1106
1106
  /**
1107
- * Sets and gets the alignment for the legend in maps.
1108
- *
1109
- * @default Center
1110
- */
1111
- alignment?: Alignment;
1107
+ * Sets and gets the alignment for the legend in maps.
1108
+ *
1109
+ * @default Center
1110
+ */
1111
+ alignment?: Alignment;
1112
1112
 
1113
1113
  /**
1114
- * Sets and gets the orientation of the legend in maps.
1115
- *
1116
- * @default None
1117
- */
1118
- orientation?: LegendArrangement;
1114
+ * Sets and gets the orientation of the legend in maps.
1115
+ *
1116
+ * @default None
1117
+ */
1118
+ orientation?: LegendArrangement;
1119
1119
 
1120
1120
  /**
1121
- * Sets and gets the location of the legend, given by x and y values.
1122
- */
1123
- location?: Point;
1121
+ * Sets and gets the location of the legend, given by x and y values.
1122
+ */
1123
+ location?: Point;
1124
1124
 
1125
1125
  /**
1126
- * Sets and gets the color of the legend in maps.
1127
- */
1128
- fill?: string;
1126
+ * Sets and gets the color of the legend in maps.
1127
+ */
1128
+ fill?: string;
1129
1129
 
1130
1130
  /**
1131
- * Sets and gets the opacity for the legend in maps.
1132
- *
1133
- * @default 1
1134
- */
1135
- opacity?: number;
1131
+ * Sets and gets the opacity for the legend in maps.
1132
+ *
1133
+ * @default 1
1134
+ */
1135
+ opacity?: number;
1136
1136
 
1137
1137
  /**
1138
- * Sets and gets the mode of the legend in maps. The modes available are default and interactive modes.
1139
- *
1140
- * @default Default
1141
- */
1142
- mode?: LegendMode;
1138
+ * Sets and gets the mode of the legend in maps. The modes available are default and interactive modes.
1139
+ *
1140
+ * @default Default
1141
+ */
1142
+ mode?: LegendMode;
1143
1143
 
1144
1144
  /**
1145
- * Sets and gets the path for the legend from the data source to be shown.
1146
- *
1147
- * @default null
1148
- */
1149
- showLegendPath?: string;
1145
+ * Sets and gets the path for the legend from the data source to be shown.
1146
+ *
1147
+ * @default null
1148
+ */
1149
+ showLegendPath?: string;
1150
1150
 
1151
1151
  /**
1152
- * Set and gets the value from the data source for legend.
1153
- *
1154
- * @default null
1155
- */
1156
- valuePath?: string;
1152
+ * Set and gets the value from the data source for legend.
1153
+ *
1154
+ * @default null
1155
+ */
1156
+ valuePath?: string;
1157
1157
 
1158
1158
  /**
1159
- * Enables or disables to remove the duplicate legend item.
1160
- *
1161
- * @default false
1162
- */
1163
- removeDuplicateLegend?: boolean;
1159
+ * Enables or disables to remove the duplicate legend item.
1160
+ *
1161
+ * @default false
1162
+ */
1163
+ removeDuplicateLegend?: boolean;
1164
1164
 
1165
1165
  /**
1166
- * Sets and gets the options for customizing the color and width of the shape related to the legend on selecting the legend.
1167
- */
1168
- toggleLegendSettings?: ToggleLegendSettingsModel;
1166
+ * Sets and gets the options for customizing the color and width of the shape related to the legend on selecting the legend.
1167
+ */
1168
+ toggleLegendSettings?: ToggleLegendSettingsModel;
1169
1169
 
1170
1170
  }
1171
1171
 
@@ -1175,73 +1175,73 @@ export interface LegendSettingsModel {
1175
1175
  export interface DataLabelSettingsModel {
1176
1176
 
1177
1177
  /**
1178
- * Enables or disables the visibility of data-labels in maps.
1179
- *
1180
- * @default false
1181
- */
1182
- visible?: boolean;
1178
+ * Enables or disables the visibility of data-labels in maps.
1179
+ *
1180
+ * @default false
1181
+ */
1182
+ visible?: boolean;
1183
1183
 
1184
1184
  /**
1185
- * Sets and gets the options for customizing the color and width of the border for the data-labels.
1186
- */
1187
- border?: BorderModel;
1185
+ * Sets and gets the options for customizing the color and width of the border for the data-labels.
1186
+ */
1187
+ border?: BorderModel;
1188
1188
 
1189
1189
  /**
1190
- * Sets and gets the color for the data-labels in maps.
1191
- */
1192
- fill?: string;
1190
+ * Sets and gets the color for the data-labels in maps.
1191
+ */
1192
+ fill?: string;
1193
1193
 
1194
1194
  /**
1195
- * Sets and gets the opacity for the color of the data-labels in maps.
1196
- */
1197
- opacity?: number;
1195
+ * Sets and gets the opacity for the color of the data-labels in maps.
1196
+ */
1197
+ opacity?: number;
1198
1198
 
1199
1199
  /**
1200
- * Sets and gets the x position for the data-labels.
1201
- *
1202
- * @default 10
1203
- */
1204
- rx?: number;
1200
+ * Sets and gets the x position for the data-labels.
1201
+ *
1202
+ * @default 10
1203
+ */
1204
+ rx?: number;
1205
1205
 
1206
1206
  /**
1207
- * Sets and gets the y position for the data-labels in maps.
1208
- *
1209
- * @default 10
1210
- */
1211
- ry?: number;
1207
+ * Sets and gets the y position for the data-labels in maps.
1208
+ *
1209
+ * @default 10
1210
+ */
1211
+ ry?: number;
1212
1212
 
1213
1213
  /**
1214
- * Sets and gets the options for customizing the styles of the text in data-labels.
1215
- */
1216
- textStyle?: FontModel;
1214
+ * Sets and gets the options for customizing the styles of the text in data-labels.
1215
+ */
1216
+ textStyle?: FontModel;
1217
1217
 
1218
1218
  /**
1219
- * Sets and gets the path from the data source based on which the data-labels gets rendered.
1220
- *
1221
- * @default ''
1222
- */
1223
- labelPath?: string;
1219
+ * Sets and gets the path from the data source based on which the data-labels gets rendered.
1220
+ *
1221
+ * @default ''
1222
+ */
1223
+ labelPath?: string;
1224
1224
 
1225
1225
  /**
1226
- * Sets and gets the label mode for the data-labels.
1227
- *
1228
- * @default None
1229
- */
1230
- smartLabelMode?: SmartLabelMode;
1226
+ * Sets and gets the label mode for the data-labels.
1227
+ *
1228
+ * @default None
1229
+ */
1230
+ smartLabelMode?: SmartLabelMode;
1231
1231
 
1232
1232
  /**
1233
- * Sets and gets the intersection action for the data-labels in maps.
1234
- *
1235
- * @default None
1236
- */
1237
- intersectionAction?: IntersectAction;
1233
+ * Sets and gets the intersection action for the data-labels in maps.
1234
+ *
1235
+ * @default None
1236
+ */
1237
+ intersectionAction?: IntersectAction;
1238
1238
 
1239
1239
  /**
1240
- * Sets and gets the template for the data-labels in maps.
1241
- *
1242
- * @default ''
1243
- */
1244
- template?: string;
1240
+ * Sets and gets the template for the data-labels in maps.
1241
+ *
1242
+ * @default ''
1243
+ */
1244
+ template?: string;
1245
1245
 
1246
1246
  }
1247
1247
 
@@ -1251,82 +1251,82 @@ export interface DataLabelSettingsModel {
1251
1251
  export interface ShapeSettingsModel {
1252
1252
 
1253
1253
  /**
1254
- * Sets and gets the color of the shapes in maps.
1255
- *
1256
- * @default null
1257
- */
1258
- fill?: string;
1254
+ * Sets and gets the color of the shapes in maps.
1255
+ *
1256
+ * @default null
1257
+ */
1258
+ fill?: string;
1259
1259
 
1260
1260
  /**
1261
- * Sets and gets a set of colors for the shapes in maps.
1262
- *
1263
- * @default []
1264
- */
1265
- palette?: string[];
1261
+ * Sets and gets a set of colors for the shapes in maps.
1262
+ *
1263
+ * @default []
1264
+ */
1265
+ palette?: string[];
1266
1266
 
1267
1267
  /**
1268
- * Sets and gets the radius of the shape.
1269
- */
1270
- circleRadius?: number;
1268
+ * Sets and gets the radius of the shape.
1269
+ */
1270
+ circleRadius?: number;
1271
1271
 
1272
1272
  /**
1273
- * Sets and gets the options for customizing the color and width of the border for the shapes in maps.
1274
- */
1275
- border?: BorderModel;
1273
+ * Sets and gets the options for customizing the color and width of the border for the shapes in maps.
1274
+ */
1275
+ border?: BorderModel;
1276
1276
 
1277
1277
  /**
1278
- * Sets and gets the dash-array for the shapes in maps.
1279
- */
1280
- dashArray?: string;
1278
+ * Sets and gets the dash-array for the shapes in maps.
1279
+ */
1280
+ dashArray?: string;
1281
1281
 
1282
1282
  /**
1283
- * Sets and gets the opacity for the shapes in maps.
1284
- *
1285
- * @default 1
1286
- */
1287
- opacity?: number;
1283
+ * Sets and gets the opacity for the shapes in maps.
1284
+ *
1285
+ * @default 1
1286
+ */
1287
+ opacity?: number;
1288
1288
 
1289
1289
  /**
1290
- * Sets and gets the value path from the data source to set the color for the shapes in maps.
1291
- *
1292
- * @default null
1293
- */
1294
- colorValuePath?: string;
1290
+ * Sets and gets the value path from the data source to set the color for the shapes in maps.
1291
+ *
1292
+ * @default null
1293
+ */
1294
+ colorValuePath?: string;
1295
1295
 
1296
1296
  /**
1297
- * Sets and gets the value path from the data source to set the color for the border of a particular shape in maps.
1298
- *
1299
- * @default null
1300
- */
1301
- borderColorValuePath?: string;
1297
+ * Sets and gets the value path from the data source to set the color for the border of a particular shape in maps.
1298
+ *
1299
+ * @default null
1300
+ */
1301
+ borderColorValuePath?: string;
1302
1302
 
1303
1303
  /**
1304
- * Sets and gets the value path from the data source to set the width for the border of a particular shape in maps.
1305
- *
1306
- * @default null
1307
- */
1308
- borderWidthValuePath?: string;
1304
+ * Sets and gets the value path from the data source to set the width for the border of a particular shape in maps.
1305
+ *
1306
+ * @default null
1307
+ */
1308
+ borderWidthValuePath?: string;
1309
1309
 
1310
1310
  /**
1311
- * Sets and gets the value from the data source based on which the shape gets rendered.
1312
- *
1313
- * @default null
1314
- */
1315
- valuePath?: string;
1311
+ * Sets and gets the value from the data source based on which the shape gets rendered.
1312
+ *
1313
+ * @default null
1314
+ */
1315
+ valuePath?: string;
1316
1316
 
1317
1317
  /**
1318
- * Sets and gets the options to map the color for some set of the shapes in maps.
1319
- *
1320
- * @default []
1321
- */
1322
- colorMapping?: ColorMappingSettingsModel[];
1318
+ * Sets and gets the options to map the color for some set of the shapes in maps.
1319
+ *
1320
+ * @default []
1321
+ */
1322
+ colorMapping?: ColorMappingSettingsModel[];
1323
1323
 
1324
1324
  /**
1325
- * Enables or disables the filling of color for the shapes automatically.
1326
- *
1327
- * @default false
1328
- */
1329
- autofill?: boolean;
1325
+ * Enables or disables the filling of color for the shapes automatically.
1326
+ *
1327
+ * @default false
1328
+ */
1329
+ autofill?: boolean;
1330
1330
 
1331
1331
  }
1332
1332
 
@@ -1336,166 +1336,166 @@ export interface ShapeSettingsModel {
1336
1336
  export interface MarkerBaseModel {
1337
1337
 
1338
1338
  /**
1339
- * Sets and gets the options for customizing the color and width of the border for the marker in maps.
1340
- */
1341
- border?: BorderModel;
1339
+ * Sets and gets the options for customizing the color and width of the border for the marker in maps.
1340
+ */
1341
+ border?: BorderModel;
1342
1342
 
1343
1343
  /**
1344
- * Sets and gets the dash-array for the marker.
1345
- */
1346
- dashArray?: string;
1344
+ * Sets and gets the dash-array for the marker.
1345
+ */
1346
+ dashArray?: string;
1347
1347
 
1348
1348
  /**
1349
- * Enables or disables the visibility state of the marker based on the marker data source in maps.
1350
- *
1351
- * @default false
1352
- */
1353
- visible?: boolean;
1349
+ * Enables or disables the visibility state of the marker based on the marker data source in maps.
1350
+ *
1351
+ * @default false
1352
+ */
1353
+ visible?: boolean;
1354
1354
 
1355
1355
  /**
1356
- * Sets and gets the color for the marker in maps.
1357
- *
1358
- * @default '#FF471A'
1359
- */
1360
- fill?: string;
1356
+ * Sets and gets the color for the marker in maps.
1357
+ *
1358
+ * @default '#FF471A'
1359
+ */
1360
+ fill?: string;
1361
1361
 
1362
1362
  /**
1363
- * Sets and gets the height of the marker in maps.
1364
- *
1365
- * @default 10
1366
- */
1367
- height?: number;
1363
+ * Sets and gets the height of the marker in maps.
1364
+ *
1365
+ * @default 10
1366
+ */
1367
+ height?: number;
1368
1368
 
1369
1369
  /**
1370
- * Sets and gets the width of the marker in maps.
1371
- *
1372
- * @default 10
1373
- */
1374
- width?: number;
1370
+ * Sets and gets the width of the marker in maps.
1371
+ *
1372
+ * @default 10
1373
+ */
1374
+ width?: number;
1375
1375
 
1376
1376
  /**
1377
- * Sets and gets the opacity for the marker in maps.
1378
- *
1379
- * @default 1
1380
- */
1381
- opacity?: number;
1377
+ * Sets and gets the opacity for the marker in maps.
1378
+ *
1379
+ * @default 1
1380
+ */
1381
+ opacity?: number;
1382
1382
 
1383
1383
  /**
1384
- * Sets and gets the value path from the marker data source to apply color for the marker.
1385
- *
1386
- * @default null
1387
- */
1388
- colorValuePath?: string;
1384
+ * Sets and gets the value path from the marker data source to apply color for the marker.
1385
+ *
1386
+ * @default null
1387
+ */
1388
+ colorValuePath?: string;
1389
1389
 
1390
1390
  /**
1391
- * Sets and gets the value path from the marker data source to set the shape of the marker.
1392
- *
1393
- * @default null
1394
- */
1395
- shapeValuePath?: string;
1391
+ * Sets and gets the value path from the marker data source to set the shape of the marker.
1392
+ *
1393
+ * @default null
1394
+ */
1395
+ shapeValuePath?: string;
1396
1396
 
1397
1397
  /**
1398
- * Sets and gets the value path from the marker data source for the image of the marker.
1399
- *
1400
- * @default null
1401
- */
1402
- imageUrlValuePath?: string;
1398
+ * Sets and gets the value path from the marker data source for the image of the marker.
1399
+ *
1400
+ * @default null
1401
+ */
1402
+ imageUrlValuePath?: string;
1403
1403
 
1404
1404
  /**
1405
- * Sets and gets the shape of the marker in maps.
1406
- *
1407
- * @default Balloon
1408
- */
1409
- shape?: MarkerType;
1405
+ * Sets and gets the shape of the marker in maps.
1406
+ *
1407
+ * @default Balloon
1408
+ */
1409
+ shape?: MarkerType;
1410
1410
 
1411
1411
  /**
1412
- * Sets and gets the text for the legend from the marker data source.
1413
- *
1414
- * @default ''
1415
- */
1416
- legendText?: string;
1412
+ * Sets and gets the text for the legend from the marker data source.
1413
+ *
1414
+ * @default ''
1415
+ */
1416
+ legendText?: string;
1417
1417
 
1418
1418
  /**
1419
- * Sets and gets the position to move the marker by setting specific value.
1420
- *
1421
- */
1422
- offset?: Point;
1419
+ * Sets and gets the position to move the marker by setting specific value.
1420
+ *
1421
+ */
1422
+ offset?: Point;
1423
1423
 
1424
1424
  /**
1425
- * Sets and gets the URL for rendering the marker as image.
1426
- */
1427
- imageUrl?: string;
1425
+ * Sets and gets the URL for rendering the marker as image.
1426
+ */
1427
+ imageUrl?: string;
1428
1428
 
1429
1429
  /**
1430
- * Sets and gets the template for the marker.
1431
- *
1432
- * @default null
1433
- */
1434
- template?: string;
1430
+ * Sets and gets the template for the marker.
1431
+ *
1432
+ * @default null
1433
+ */
1434
+ template?: string;
1435
1435
 
1436
1436
  /**
1437
- * Sets and gets the data source for the marker.
1438
- * The data source for the marker will contain latitude and longitude values to specify the location
1439
- * of the marker.
1440
- * The data source can contain data such as color, shape, and other details that can be bound to the color, shape,
1441
- * and tooltip of the marker.
1442
- *
1443
- * @isObservable true
1444
- * @default []
1445
- */
1446
- dataSource?: Object[] | DataManager;
1437
+ * Sets and gets the data source for the marker.
1438
+ * The data source for the marker will contain latitude and longitude values to specify the location
1439
+ * of the marker.
1440
+ * The data source can contain data such as color, shape, and other details that can be bound to the color, shape,
1441
+ * and tooltip of the marker.
1442
+ *
1443
+ * @isObservable true
1444
+ * @default []
1445
+ */
1446
+ dataSource?: Object[] | DataManager;
1447
1447
 
1448
1448
  /**
1449
- * Sets and gets the query to select particular data from the marker data.
1450
- * This property is applicable only when the data source is created by data manager.
1451
- *
1452
- * @default null
1453
- */
1454
- query?: Query;
1449
+ * Sets and gets the query to select particular data from the marker data.
1450
+ * This property is applicable only when the data source is created by data manager.
1451
+ *
1452
+ * @default null
1453
+ */
1454
+ query?: Query;
1455
1455
 
1456
1456
  /**
1457
- * Sets and gets the options to customize the tooltip for the marker in maps.
1458
- */
1459
- tooltipSettings?: TooltipSettingsModel;
1457
+ * Sets and gets the options to customize the tooltip for the marker in maps.
1458
+ */
1459
+ tooltipSettings?: TooltipSettingsModel;
1460
1460
 
1461
1461
  /**
1462
- * Sets and gets the duration time for animating the marker.
1463
- *
1464
- * @default 1000
1465
- */
1466
- animationDuration?: number;
1462
+ * Sets and gets the duration time for animating the marker.
1463
+ *
1464
+ * @default 1000
1465
+ */
1466
+ animationDuration?: number;
1467
1467
 
1468
1468
  /**
1469
- * Sets and gets the delay time for the animation in marker.
1470
- *
1471
- * @default 0
1472
- */
1473
- animationDelay?: number;
1469
+ * Sets and gets the delay time for the animation in marker.
1470
+ *
1471
+ * @default 0
1472
+ */
1473
+ animationDelay?: number;
1474
1474
 
1475
1475
  /**
1476
- * Sets and gets the options to customize the marker while selecting the marker in maps.
1477
- */
1478
- selectionSettings?: SelectionSettingsModel;
1476
+ * Sets and gets the options to customize the marker while selecting the marker in maps.
1477
+ */
1478
+ selectionSettings?: SelectionSettingsModel;
1479
1479
 
1480
1480
  /**
1481
- * Sets and gets the options to customize the marker while the mouse has hovered on the marker in maps.
1482
- */
1483
- highlightSettings?: HighlightSettingsModel;
1481
+ * Sets and gets the options to customize the marker while the mouse has hovered on the marker in maps.
1482
+ */
1483
+ highlightSettings?: HighlightSettingsModel;
1484
1484
 
1485
1485
  /**
1486
- * Defines the value path from the marker data source for setting latitude for a set of markers.
1487
- */
1488
- latitudeValuePath?: string;
1486
+ * Defines the value path from the marker data source for setting latitude for a set of markers.
1487
+ */
1488
+ latitudeValuePath?: string;
1489
1489
 
1490
1490
  /**
1491
- * Defines the value path from the marker data source for setting longitude for a set of markers.
1492
- */
1493
- longitudeValuePath?: string;
1491
+ * Defines the value path from the marker data source for setting longitude for a set of markers.
1492
+ */
1493
+ longitudeValuePath?: string;
1494
1494
 
1495
1495
  /**
1496
- * To select the shape at the rendering time.
1497
- */
1498
- initialMarkerSelection?: InitialMarkerSelectionSettingsModel[];
1496
+ * To select the shape at the rendering time.
1497
+ */
1498
+ initialMarkerSelection?: InitialMarkerSelectionSettingsModel[];
1499
1499
 
1500
1500
  }
1501
1501
 
@@ -1512,163 +1512,167 @@ export interface MarkerSettingsModel extends MarkerBaseModel{
1512
1512
  export interface LayerSettingsModel {
1513
1513
 
1514
1514
  /**
1515
- * Sets and gets the shape data for the maps to render.
1516
- *
1517
- * @isObservable true
1518
- * @default null
1519
- */
1520
- shapeData?: Object | DataManager | MapAjax;
1515
+ * Sets and gets the shape data for the maps to render.
1516
+ *
1517
+ * @isObservable true
1518
+ * @default null
1519
+ */
1520
+ shapeData?: Object | DataManager | MapAjax;
1521
1521
 
1522
1522
  /**
1523
- * Sets and gets the query to select particular data from the shape data.
1524
- * This property is applicable only when the data source is created by data manager.
1525
- *
1526
- * @default null
1527
- */
1528
- query?: Query;
1523
+ * Sets and gets the query to select particular data from the shape data.
1524
+ * This property is applicable only when the data source is created by data manager.
1525
+ *
1526
+ * @default null
1527
+ */
1528
+ query?: Query;
1529
1529
 
1530
1530
  /**
1531
- * Sets and gets the options to customize the shape of the maps.
1532
- */
1533
- shapeSettings?: ShapeSettingsModel;
1531
+ * Sets and gets the options to customize the shape of the maps.
1532
+ */
1533
+ shapeSettings?: ShapeSettingsModel;
1534
1534
 
1535
1535
  /**
1536
- * * Sets and gets the data source for the layer.
1537
- * * The data source can contain data that can be bound to the tooltip, marker, and bubble.
1538
- *
1539
- * @isObservable true
1540
- * @default []
1541
- */
1542
- dataSource?: Object[] | DataManager | MapAjax;
1536
+ * * Sets and gets the data source for the layer.
1537
+ * * The data source can contain data that can be bound to the tooltip, marker, and bubble.
1538
+ *
1539
+ * @isObservable true
1540
+ * @default []
1541
+ */
1542
+ dataSource?: Object[] | DataManager | MapAjax;
1543
1543
 
1544
1544
  /**
1545
- * Sets and gets the type of the layer in maps.
1546
- *
1547
- * @default Layer
1548
- */
1549
- type?: Type;
1545
+ * Sets and gets the type of the layer in maps.
1546
+ *
1547
+ * @default Layer
1548
+ */
1549
+ type?: Type;
1550
1550
 
1551
1551
  /**
1552
- * Sets and gets the geometry type for the layer in maps.
1553
- *
1554
- * @default Geographic
1555
- */
1556
- geometryType?: GeometryType;
1552
+ * Sets and gets the geometry type for the layer in maps.
1553
+ *
1554
+ * @default Geographic
1555
+ */
1556
+ geometryType?: GeometryType;
1557
1557
 
1558
1558
  /**
1559
- * Sets and gets the Bing map type for the layer. If you use shape data with BingMapType without using layer type as Bing,
1560
- * then the map will render based on shape data since default layer type will be set as Geometry.
1561
- *
1562
- * @default Aerial
1563
- */
1564
- bingMapType?: BingMapType;
1559
+ * Sets and gets the Bing map type for the layer. If you use shape data with BingMapType without using layer type as Bing,
1560
+ * then the map will render based on shape data since default layer type will be set as Geometry.
1561
+ *
1562
+ * @deprecated
1563
+ * @default Aerial
1564
+ */
1565
+ bingMapType?: BingMapType;
1565
1566
 
1566
1567
  /**
1567
- * Sets and gets the type of the static maps.
1568
- *
1569
- * @default RoadMap
1570
- */
1571
- staticMapType?: StaticMapType;
1568
+ * Sets and gets the type of the static maps.
1569
+ *
1570
+ * @deprecated
1571
+ * @default RoadMap
1572
+ */
1573
+ staticMapType?: StaticMapType;
1572
1574
 
1573
1575
  /**
1574
- * Sets and gets the key for the tile map layer in maps.
1575
- *
1576
- * @default ''
1577
- */
1578
- key?: string;
1576
+ * Sets and gets the key for the tile map layer in maps.
1577
+ *
1578
+ * @deprecated
1579
+ * @default ''
1580
+ */
1581
+ key?: string;
1579
1582
 
1580
1583
  /**
1581
- * Sets and gets the type of the layer in maps. If we use layer type with shape data property in layer of the maps
1582
- * then map will render based on the provided layer type.
1583
- *
1584
- * @default Geometry
1585
- */
1586
- layerType?: ShapeLayerType;
1584
+ * Sets and gets the type of the layer in maps. If we use layer type with shape data property in layer of the maps
1585
+ * then map will render based on the provided layer type.
1586
+ *
1587
+ * @deprecated
1588
+ * @default Geometry
1589
+ */
1590
+ layerType?: ShapeLayerType;
1587
1591
 
1588
1592
  /**
1589
- * Sets and gets the template for the map using the url.
1590
- *
1591
- * @default 'https://a.tile.openstreetmap.org/level/tileX/tileY.png'
1592
- */
1593
- urlTemplate?: string;
1593
+ * Sets and gets the template for the map using the url.
1594
+ *
1595
+ * @default ''
1596
+ */
1597
+ urlTemplate?: string;
1594
1598
 
1595
1599
  /**
1596
- * Enables or disables the visibility state for the layers in maps.
1597
- *
1598
- * @default true
1599
- */
1600
- visible?: boolean;
1600
+ * Enables or disables the visibility state for the layers in maps.
1601
+ *
1602
+ * @default true
1603
+ */
1604
+ visible?: boolean;
1601
1605
 
1602
1606
  /**
1603
- * Sets and gets the path for the shape from the shape data in maps.
1604
- *
1605
- * @default 'name'
1606
- */
1607
- shapeDataPath?: string;
1607
+ * Sets and gets the path for the shape from the shape data in maps.
1608
+ *
1609
+ * @default 'name'
1610
+ */
1611
+ shapeDataPath?: string;
1608
1612
 
1609
1613
  /**
1610
- * Sets and gets the path for the layers from the layer data source in maps.
1611
- *
1612
- * @default 'name'
1613
- */
1614
- shapePropertyPath?: string | string[];
1614
+ * Sets and gets the path for the layers from the layer data source in maps.
1615
+ *
1616
+ * @default 'name'
1617
+ */
1618
+ shapePropertyPath?: string | string[];
1615
1619
 
1616
1620
  /**
1617
- * Sets and gets the duration for the animation of layers in maps.
1618
- *
1619
- * @default 0
1620
- */
1621
- animationDuration?: number;
1621
+ * Sets and gets the duration for the animation of layers in maps.
1622
+ *
1623
+ * @default 0
1624
+ */
1625
+ animationDuration?: number;
1622
1626
 
1623
1627
  /**
1624
- * Sets and gets the options for customizing the marker in maps.
1625
- */
1626
- markerSettings?: MarkerSettingsModel[];
1628
+ * Sets and gets the options for customizing the marker in maps.
1629
+ */
1630
+ markerSettings?: MarkerSettingsModel[];
1627
1631
 
1628
1632
  /**
1629
- * Sets and gets the options for customizing the cluster of markers in maps.
1630
- */
1631
- markerClusterSettings?: MarkerClusterSettingsModel;
1633
+ * Sets and gets the options for customizing the cluster of markers in maps.
1634
+ */
1635
+ markerClusterSettings?: MarkerClusterSettingsModel;
1632
1636
 
1633
1637
  /**
1634
- * Sets and gets the options for customizing the data-label in maps.
1635
- */
1636
- dataLabelSettings?: DataLabelSettingsModel;
1638
+ * Sets and gets the options for customizing the data-label in maps.
1639
+ */
1640
+ dataLabelSettings?: DataLabelSettingsModel;
1637
1641
 
1638
1642
  /**
1639
- * Sets and gets the options for customizing the bubble in maps.
1640
- */
1641
- bubbleSettings?: BubbleSettingsModel[];
1643
+ * Sets and gets the options for customizing the bubble in maps.
1644
+ */
1645
+ bubbleSettings?: BubbleSettingsModel[];
1642
1646
 
1643
1647
  /**
1644
- * Sets and gets the options for customizing the navigation line in maps.
1645
- */
1646
- navigationLineSettings?: NavigationLineSettingsModel[];
1648
+ * Sets and gets the options for customizing the navigation line in maps.
1649
+ */
1650
+ navigationLineSettings?: NavigationLineSettingsModel[];
1647
1651
 
1648
1652
  /**
1649
- * Sets and gets the options for customizing the tooltip for the layers, markers, and bubbles in maps.
1650
- */
1651
- tooltipSettings?: TooltipSettingsModel;
1653
+ * Sets and gets the options for customizing the tooltip for the layers, markers, and bubbles in maps.
1654
+ */
1655
+ tooltipSettings?: TooltipSettingsModel;
1652
1656
 
1653
1657
  /**
1654
- * Sets and gets the options for customizing the shapes when clicking the shapes in maps.
1655
- */
1656
- selectionSettings?: SelectionSettingsModel;
1658
+ * Sets and gets the options for customizing the shapes when clicking the shapes in maps.
1659
+ */
1660
+ selectionSettings?: SelectionSettingsModel;
1657
1661
 
1658
1662
  /**
1659
- * Sets and gets the options for customizing the shapes when the mouse has hovered on maps.
1660
- */
1661
- highlightSettings?: HighlightSettingsModel;
1663
+ * Sets and gets the options for customizing the shapes when the mouse has hovered on maps.
1664
+ */
1665
+ highlightSettings?: HighlightSettingsModel;
1662
1666
 
1663
1667
  /**
1664
- * Sets and gets the options for customizing the toggle state of shapes when selecting the legend in maps.
1665
- */
1666
- toggleLegendSettings?: ToggleLegendSettingsModel;
1668
+ * Sets and gets the options for customizing the toggle state of shapes when selecting the legend in maps.
1669
+ */
1670
+ toggleLegendSettings?: ToggleLegendSettingsModel;
1667
1671
 
1668
1672
  /**
1669
- * Sets and gets the settings for shapes that is selected at the time of rendering.
1670
- */
1671
- initialShapeSelection?: InitialShapeSelectionSettingsModel[];
1673
+ * Sets and gets the settings for shapes that is selected at the time of rendering.
1674
+ */
1675
+ initialShapeSelection?: InitialShapeSelectionSettingsModel[];
1672
1676
 
1673
1677
  }
1674
1678
 
@@ -1685,13 +1689,13 @@ export interface TileModel {
1685
1689
  export interface MapsAreaSettingsModel {
1686
1690
 
1687
1691
  /**
1688
- * Sets and gets the background color for the map area.
1689
- */
1690
- background?: string;
1692
+ * Sets and gets the background color for the map area.
1693
+ */
1694
+ background?: string;
1691
1695
 
1692
1696
  /**
1693
- * Sets and gets the options for customizing the color and width of the border of maps area.
1694
- */
1695
- border?: BorderModel;
1697
+ * Sets and gets the options for customizing the color and width of the border of maps area.
1698
+ */
1699
+ border?: BorderModel;
1696
1700
 
1697
1701
  }