@syncfusion/ej2-maps 31.2.2 → 31.2.12

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 (67) hide show
  1. package/README.md +11 -2
  2. package/dist/ej2-maps.min.js +2 -2
  3. package/dist/ej2-maps.umd.min.js +2 -2
  4. package/dist/ej2-maps.umd.min.js.map +1 -1
  5. package/dist/es6/ej2-maps.es2015.js +84 -53
  6. package/dist/es6/ej2-maps.es2015.js.map +1 -1
  7. package/dist/es6/ej2-maps.es5.js +87 -56
  8. package/dist/es6/ej2-maps.es5.js.map +1 -1
  9. package/dist/global/ej2-maps.min.js +2 -2
  10. package/dist/global/ej2-maps.min.js.map +1 -1
  11. package/dist/global/index.d.ts +1 -1
  12. package/package.json +18 -53
  13. package/src/maps/layers/layer-panel.js +86 -55
  14. package/dist/ts/index.d.ts +0 -4
  15. package/dist/ts/index.ts +0 -4
  16. package/dist/ts/maps/index.d.ts +0 -28
  17. package/dist/ts/maps/index.ts +0 -28
  18. package/dist/ts/maps/layers/bing-map.d.ts +0 -21
  19. package/dist/ts/maps/layers/bing-map.ts +0 -51
  20. package/dist/ts/maps/layers/bubble.d.ts +0 -77
  21. package/dist/ts/maps/layers/bubble.ts +0 -304
  22. package/dist/ts/maps/layers/color-mapping.d.ts +0 -36
  23. package/dist/ts/maps/layers/color-mapping.ts +0 -230
  24. package/dist/ts/maps/layers/data-label.d.ts +0 -45
  25. package/dist/ts/maps/layers/data-label.ts +0 -457
  26. package/dist/ts/maps/layers/layer-panel.d.ts +0 -144
  27. package/dist/ts/maps/layers/layer-panel.ts +0 -1455
  28. package/dist/ts/maps/layers/legend.d.ts +0 -173
  29. package/dist/ts/maps/layers/legend.ts +0 -2465
  30. package/dist/ts/maps/layers/marker.d.ts +0 -105
  31. package/dist/ts/maps/layers/marker.ts +0 -632
  32. package/dist/ts/maps/layers/navigation-selected-line.d.ts +0 -33
  33. package/dist/ts/maps/layers/navigation-selected-line.ts +0 -171
  34. package/dist/ts/maps/layers/polygon.d.ts +0 -30
  35. package/dist/ts/maps/layers/polygon.ts +0 -68
  36. package/dist/ts/maps/maps-model.d.ts +0 -409
  37. package/dist/ts/maps/maps.d.ts +0 -1247
  38. package/dist/ts/maps/maps.ts +0 -3416
  39. package/dist/ts/maps/model/base-model.d.ts +0 -2107
  40. package/dist/ts/maps/model/base.d.ts +0 -1840
  41. package/dist/ts/maps/model/base.ts +0 -2257
  42. package/dist/ts/maps/model/constants.d.ts +0 -225
  43. package/dist/ts/maps/model/constants.ts +0 -226
  44. package/dist/ts/maps/model/export-image.d.ts +0 -39
  45. package/dist/ts/maps/model/export-image.ts +0 -194
  46. package/dist/ts/maps/model/export-pdf.d.ts +0 -40
  47. package/dist/ts/maps/model/export-pdf.ts +0 -183
  48. package/dist/ts/maps/model/interface.d.ts +0 -892
  49. package/dist/ts/maps/model/interface.ts +0 -929
  50. package/dist/ts/maps/model/print.d.ts +0 -45
  51. package/dist/ts/maps/model/print.ts +0 -125
  52. package/dist/ts/maps/model/theme.d.ts +0 -98
  53. package/dist/ts/maps/model/theme.ts +0 -919
  54. package/dist/ts/maps/user-interaction/annotation.d.ts +0 -27
  55. package/dist/ts/maps/user-interaction/annotation.ts +0 -133
  56. package/dist/ts/maps/user-interaction/highlight.d.ts +0 -63
  57. package/dist/ts/maps/user-interaction/highlight.ts +0 -272
  58. package/dist/ts/maps/user-interaction/selection.d.ts +0 -85
  59. package/dist/ts/maps/user-interaction/selection.ts +0 -342
  60. package/dist/ts/maps/user-interaction/tooltip.d.ts +0 -78
  61. package/dist/ts/maps/user-interaction/tooltip.ts +0 -500
  62. package/dist/ts/maps/user-interaction/zoom.d.ts +0 -334
  63. package/dist/ts/maps/user-interaction/zoom.ts +0 -2523
  64. package/dist/ts/maps/utils/enum.d.ts +0 -328
  65. package/dist/ts/maps/utils/enum.ts +0 -343
  66. package/dist/ts/maps/utils/helper.d.ts +0 -1318
  67. package/dist/ts/maps/utils/helper.ts +0 -3811
@@ -1,328 +0,0 @@
1
- /**
2
- * Maps enum doc
3
- */
4
- /**
5
- * Defines the alignment for the elements in the maps.
6
- */
7
- export declare type Alignment =
8
- /** Specifies the element to be placed near end of the maps. */
9
- 'Near' |
10
- /** Specifies the element to be placed at the center of the maps. */
11
- 'Center' |
12
- /** Specifies the element to be placed far end of the maps. */
13
- 'Far';
14
- /**
15
- * Defines the theme supported for maps.
16
- */
17
- export declare type MapsTheme =
18
- /** Renders a map with Material theme. */
19
- 'Material' |
20
- /** Renders a map with Fabric theme. */
21
- 'Fabric' |
22
- /** Renders a map with HighContrast light theme. */
23
- 'HighContrastLight' |
24
- /** Renders a map with Bootstrap theme. */
25
- 'Bootstrap' |
26
- /** Renders a map with Material dark theme. */
27
- 'MaterialDark' |
28
- /** Renders a map with Fabric dark theme. */
29
- 'FabricDark' |
30
- /** Renders a map with HighContrast theme. */
31
- 'HighContrast' |
32
- /** Renders a map with Bootstrap dark theme. */
33
- 'BootstrapDark' |
34
- /** Renders a map with Bootstrap4 theme. */
35
- 'Bootstrap4' |
36
- /** Renders a map with Tailwind theme. */
37
- 'Tailwind' |
38
- /** Renders a map with TailwindDark theme. */
39
- 'TailwindDark' |
40
- /** Renders a map with Tailwind3 theme. */
41
- 'Tailwind3' |
42
- /** Renders a map with Tailwind3Dark theme. */
43
- 'Tailwind3Dark' |
44
- /** Renders a map with Bootstrap5 theme. */
45
- 'Bootstrap5' |
46
- /** Render a map with Bootstrap5 dark theme. */
47
- 'Bootstrap5Dark' |
48
- /** Renders a map with Fluent theme. */
49
- 'Fluent' |
50
- /** Render a map with Fluent dark theme. */
51
- 'FluentDark' |
52
- /** Renders a map with material3 theme. */
53
- 'Material3' |
54
- /** Renders a map with material3dark theme. */
55
- 'Material3Dark' |
56
- /** Renders a map with fluent2 theme. */
57
- 'Fluent2' |
58
- /** Renders a map with fluent2 dark theme. */
59
- 'Fluent2Dark' |
60
- /** Renders a map with fluent2 high contrast theme. */
61
- 'Fluent2HighContrast';
62
- /**
63
- * Defines the position of the legend.
64
- */
65
- export declare type LegendPosition =
66
- /** Specifies the legend to be placed on the top of the maps. */
67
- 'Top' |
68
- /** Specifies the legend to be placed to the left of the maps. */
69
- 'Left' |
70
- /** Specifies the legend to be placed at the bottom of the maps. */
71
- 'Bottom' |
72
- /** Specifies the legend to be placed to the right of the maps. */
73
- 'Right' |
74
- /** Specifies the legend to be placed in a custom location. */
75
- 'Float';
76
- /**
77
- * Defines the type of the element in the map for which legend is to be rendered.
78
- */
79
- export declare type LegendType =
80
- /** Renders the legend based on layers. */
81
- 'Layers' |
82
- /** Renders the legend based on bubbles. */
83
- 'Bubbles' |
84
- /** Renders the legend based on markers. */
85
- 'Markers';
86
- /**
87
- * Defines the smart label mode for the data-label. Smart label handles the data label text when it exceeds the shape over which it is rendered.
88
- */
89
- export declare type SmartLabelMode =
90
- /** Trims the datalabel which exceed the region. */
91
- 'Trim' |
92
- /** No action is taken when the data label exceeds its designated region. */
93
- 'None' |
94
- /** Hides the datalabel which exceeds the region. */
95
- 'Hide';
96
- /**
97
- * Defines the arrow position in navigation line.
98
- */
99
- export declare type ArrowPosition =
100
- /** Defines the arrow to be positioned at the start of the navigation line. */
101
- 'Start' |
102
- /** Defines the arrow to be positioned at the end of the navigation line. */
103
- 'End';
104
- /**
105
- * Defines the label intersect action. Label interaction action handles the data label text
106
- * when it intersects with other data label contents.
107
- */
108
- export declare type IntersectAction =
109
- /** Specifies the data label to be trimmed when it intersects. */
110
- 'Trim' |
111
- /** Specifies that no action will be taken when it intersects. */
112
- 'None' |
113
- /** Specifies the data label to be hidden when it intersects. */
114
- 'Hide';
115
- /**
116
- * Defines the modes for rendering the legend.
117
- */
118
- export declare type LegendMode =
119
- /** Sets the legend as fixed, and has the option to add different shapes showcasing legend items. */
120
- 'Default' |
121
- /** Set the legend as interactive, which is rectangular in shape with an indicator showcasing legend items. */
122
- 'Interactive';
123
- /**
124
- * Defines the type of the layer in maps.
125
- */
126
- export declare type Type =
127
- /**
128
- * Specifies the provided layer as main layer in the maps.
129
- */
130
- 'Layer' |
131
- /**
132
- * Specifies the provided layer as sublayer in the maps. This layer will be a part of the main layer provided in the maps.
133
- */
134
- 'SubLayer';
135
- /**
136
- * Defines the type of markers in the maps.
137
- */
138
- export declare type MarkerType =
139
- /** Specifies that the marker shape should be rendered as a circle on maps. */
140
- 'Circle' |
141
- /** Specifies that the marker shape should be rendered as a rectangle on maps. */
142
- 'Rectangle' |
143
- /** Specifies that the marker shape should be rendered as a cross on maps. */
144
- 'Cross' |
145
- /** Specifies that the marker shape should be rendered as a diamond on maps. */
146
- 'Diamond' |
147
- /** Specifies that the marker shape should be rendered as a star on maps. */
148
- 'Star' |
149
- /** Specifies that the marker shape should be rendered as a balloon on maps. */
150
- 'Balloon' |
151
- /** Specifies that the marker shape should be rendered as a triangle on maps. */
152
- 'Triangle' |
153
- /** Specifies that the marker shape should be rendered as a horizontal line on maps. */
154
- 'HorizontalLine' |
155
- /** Specifies that the marker shape should be rendered as a vertical line on maps. */
156
- 'VerticalLine' |
157
- /** Specifies that the marker shape should be rendered as an image on maps. */
158
- 'Image' |
159
- /** Specifies that the marker shape should be rendered as an inverted triangle on maps. */
160
- 'InvertedTriangle' |
161
- /** Specifies that the marker shape should be rendered as a pentagon on maps. */
162
- 'Pentagon';
163
- /**
164
- * Defines the projection type of the maps.
165
- */
166
- export declare type ProjectionType =
167
- /** Specifies the maps to be rendered in Mercator projection type. */
168
- 'Mercator' |
169
- /** Specifies the maps to be rendered in Winklel tripel projection type. */
170
- 'Winkel3' |
171
- /** Specifies the maps to be rendered in Miller projection type. */
172
- 'Miller' |
173
- /** Specifies the maps to be rendered in Eckert III projection type. */
174
- 'Eckert3' |
175
- /** Specifies the maps to be rendered in Eckert V projection type. */
176
- 'Eckert5' |
177
- /** Specifies the maps to be rendered in Eckert VI projection type. */
178
- 'Eckert6' |
179
- /** Specifies the maps to be rendered in Aitoff projection type. */
180
- 'AitOff' |
181
- /** Specifies the maps to be rendered in Equirectangular projection type. */
182
- 'Equirectangular';
183
- /**
184
- * Defines the zooming tool bar orientation.
185
- */
186
- export declare type Orientation =
187
- /** Specifies the zooming toolbar to be placed horizontally. */
188
- 'Horizontal' |
189
- /** Specifies the zooming toolbar to be placed vertically. */
190
- 'Vertical';
191
- /**
192
- * Defines the shape of the legend.
193
- */
194
- export declare type LegendShape =
195
- /** Specifies to render the legend shape as a circle. */
196
- 'Circle' |
197
- /** Specifies to render the legend shape as a rectangle. */
198
- 'Rectangle' |
199
- /** Specifies to render the legend shape as a triangle. */
200
- 'Triangle' |
201
- /** Specifies to render the legend shape as a diamond. */
202
- 'Diamond' |
203
- /** Specifies to render the legend shape as a cross. */
204
- 'Cross' |
205
- /** Specifies to render the legend shape as a star. */
206
- 'Star' |
207
- /** Specifies to render the legend shape as a horizontal line. */
208
- 'HorizontalLine' |
209
- /** Specifies to render the legend shape as a vertical line. */
210
- 'VerticalLine' |
211
- /** Specifies to render the legend shape as a pentagon. */
212
- 'Pentagon' |
213
- /** Specifies to render the legend shape as a inverted triangle. */
214
- 'InvertedTriangle' |
215
- /** Specifies to render the legend shape as balloon on maps. */
216
- 'Balloon';
217
- /**
218
- * Defines the legend arrangement in the maps.
219
- */
220
- export declare type LegendArrangement =
221
- /** Specifies the legend items to be placed on a default placement based on legend orientation. */
222
- 'None' |
223
- /** Specifies the legend items to be placed horizontally. */
224
- 'Horizontal' |
225
- /** Specifies the legend items to be placed vertically. */
226
- 'Vertical';
227
- /**
228
- * Defines the alignment for the annotation.
229
- */
230
- export declare type AnnotationAlignment =
231
- /** Specifies the annotation to be placed on a default alignment. */
232
- 'None' |
233
- /** Specifies the annotation to be placed near the maps with respect to the position of the legend. */
234
- 'Near' |
235
- /** Specifies the annotation to be placed at the center of the maps with respect to the position of the legend. */
236
- 'Center' |
237
- /** Specifies the annotation to be placed far end of the maps with respect to the position of the legend. */
238
- 'Far';
239
- /**
240
- * Defines the geometry type.
241
- */
242
- export declare type GeometryType =
243
- /** Specifies to render the shape maps in geographic coordinate system. */
244
- 'Geographic' |
245
- /** Specifies to render the shape maps in default coordinate system. */
246
- 'Normal';
247
- /**
248
- * Defines the type of the bubble to rendered in the maps.
249
- */
250
- export declare type BubbleType =
251
- /** Specifies to render the bubble in circle shape. */
252
- 'Circle' |
253
- /** Specifies to render the bubble in square shape. */
254
- 'Square';
255
- /**
256
- * Defines the placement type of the labels in the legend.
257
- */
258
- export declare type LabelPosition =
259
- /** Specifies to place the label before the legend shape. */
260
- 'Before' |
261
- /** Specifies to place the label after the legend shape. */
262
- 'After';
263
- /**
264
- * Defines the action to be performed when the label intersects with other labels in the maps.
265
- */
266
- export declare type LabelIntersectAction =
267
- /**
268
- * Specifies that no action will be taken when the label contents intersect.
269
- */
270
- 'None' |
271
- /**
272
- * Specifies the data label to be trimmed when it intersects.
273
- */
274
- 'Trim' |
275
- /**
276
- * Specifies the data label to be hidden when it intersects.
277
- */
278
- 'Hide';
279
- /**
280
- * Specifies the export type for the maps.
281
- */
282
- export declare type ExportType =
283
- /** Specifies the rendered maps to be exported in the PNG format. */
284
- 'PNG' |
285
- /** Specifies the rendered maps to be exported in the JPEG format. */
286
- 'JPEG' |
287
- /** Specifies the rendered maps to be exported in the SVG format. */
288
- 'SVG' |
289
- /** Specifies the rendered maps to be exported in the PDF format. */
290
- 'PDF';
291
- /**
292
- * Specifies the direction of panning.
293
- */
294
- export declare type PanDirection =
295
- /** Specifies the maps to pan in the left direction. */
296
- 'Left' |
297
- /** Specifies the maps to pan in the right direction. */
298
- 'Right' |
299
- /** Specifies the maps to pan in the top direction. */
300
- 'Top' |
301
- /** Specifies the maps to pan in the bottom direction. */
302
- 'Bottom' |
303
- /** Specifies the maps to pan as per the mouse move location. */
304
- 'None';
305
- /**
306
- * Specifies the gesture on the maps in which tooltip must be rendered.
307
- */
308
- export declare type TooltipGesture =
309
- /** Specifies the tooltip to be shown on mouse hover event. */
310
- 'MouseMove' |
311
- /** Specifies the tooltip to be shown on click event. */
312
- 'Click' |
313
- /** Specifies the tooltip to be shown on double click event. */
314
- 'DoubleClick';
315
- /**
316
- * Specifies the type of the buttons in the zoom toolbar.
317
- */
318
- export declare type ToolbarItem =
319
- /** Specifies whether the zoom-in button must be rendered in the zoom toolbar or not. */
320
- 'ZoomIn' |
321
- /** Specifies whether the zoom-out button must be rendered in the zoom toolbar or not. */
322
- 'ZoomOut' |
323
- /** Specifies whether the zoom button must be rendered in the zoom toolbar or not. */
324
- 'Zoom' |
325
- /** Specifies whether the pan button must be rendered in the zoom toolbar or not. */
326
- 'Pan' |
327
- /** Specifies whether the reset zoom button must be rendered in the zoom toolbar or not. */
328
- 'Reset';
@@ -1,343 +0,0 @@
1
- /**
2
- * Maps enum doc
3
- */
4
-
5
- /**
6
- * Defines the alignment for the elements in the maps.
7
- */
8
- export type Alignment =
9
- /** Specifies the element to be placed near end of the maps. */
10
- 'Near' |
11
- /** Specifies the element to be placed at the center of the maps. */
12
- 'Center' |
13
- /** Specifies the element to be placed far end of the maps. */
14
- 'Far';
15
- /**
16
- * Defines the theme supported for maps.
17
- */
18
- export type MapsTheme =
19
- /** Renders a map with Material theme. */
20
- 'Material' |
21
- /** Renders a map with Fabric theme. */
22
- 'Fabric' |
23
- /** Renders a map with HighContrast light theme. */
24
- 'HighContrastLight' |
25
- /** Renders a map with Bootstrap theme. */
26
- 'Bootstrap' |
27
- /** Renders a map with Material dark theme. */
28
- 'MaterialDark'|
29
- /** Renders a map with Fabric dark theme. */
30
- 'FabricDark'|
31
- /** Renders a map with HighContrast theme. */
32
- 'HighContrast'|
33
- /** Renders a map with Bootstrap dark theme. */
34
- 'BootstrapDark'|
35
- /** Renders a map with Bootstrap4 theme. */
36
- 'Bootstrap4' |
37
- /** Renders a map with Tailwind theme. */
38
- 'Tailwind' |
39
- /** Renders a map with TailwindDark theme. */
40
- 'TailwindDark' |
41
- /** Renders a map with Tailwind3 theme. */
42
- 'Tailwind3' |
43
- /** Renders a map with Tailwind3Dark theme. */
44
- 'Tailwind3Dark' |
45
- /** Renders a map with Bootstrap5 theme. */
46
- 'Bootstrap5' |
47
- /** Render a map with Bootstrap5 dark theme. */
48
- 'Bootstrap5Dark' |
49
- /** Renders a map with Fluent theme. */
50
- 'Fluent' |
51
- /** Render a map with Fluent dark theme. */
52
- 'FluentDark' |
53
- /** Renders a map with material3 theme. */
54
- 'Material3' |
55
- /** Renders a map with material3dark theme. */
56
- 'Material3Dark' |
57
- /** Renders a map with fluent2 theme. */
58
- 'Fluent2' |
59
- /** Renders a map with fluent2 dark theme. */
60
- 'Fluent2Dark' |
61
- /** Renders a map with fluent2 high contrast theme. */
62
- 'Fluent2HighContrast';
63
-
64
- /**
65
- * Defines the position of the legend.
66
- */
67
- export type LegendPosition =
68
- /** Specifies the legend to be placed on the top of the maps. */
69
- 'Top' |
70
- /** Specifies the legend to be placed to the left of the maps. */
71
- 'Left' |
72
- /** Specifies the legend to be placed at the bottom of the maps. */
73
- 'Bottom' |
74
- /** Specifies the legend to be placed to the right of the maps. */
75
- 'Right' |
76
- /** Specifies the legend to be placed in a custom location. */
77
- 'Float';
78
-
79
- /**
80
- * Defines the type of the element in the map for which legend is to be rendered.
81
- */
82
- export type LegendType =
83
- /** Renders the legend based on layers. */
84
- 'Layers' |
85
- /** Renders the legend based on bubbles. */
86
- 'Bubbles' |
87
- /** Renders the legend based on markers. */
88
- 'Markers';
89
-
90
- /**
91
- * Defines the smart label mode for the data-label. Smart label handles the data label text when it exceeds the shape over which it is rendered.
92
- */
93
- export type SmartLabelMode =
94
- /** Trims the datalabel which exceed the region. */
95
- 'Trim' |
96
- /** No action is taken when the data label exceeds its designated region. */
97
- 'None' |
98
- /** Hides the datalabel which exceeds the region. */
99
- 'Hide';
100
- /**
101
- * Defines the arrow position in navigation line.
102
- */
103
- export type ArrowPosition =
104
- /** Defines the arrow to be positioned at the start of the navigation line. */
105
- 'Start' |
106
- /** Defines the arrow to be positioned at the end of the navigation line. */
107
- 'End';
108
- /**
109
- * Defines the label intersect action. Label interaction action handles the data label text
110
- * when it intersects with other data label contents.
111
- */
112
- export type IntersectAction =
113
- /** Specifies the data label to be trimmed when it intersects. */
114
- 'Trim' |
115
- /** Specifies that no action will be taken when it intersects. */
116
- 'None' |
117
- /** Specifies the data label to be hidden when it intersects. */
118
- 'Hide';
119
- /**
120
- * Defines the modes for rendering the legend.
121
- */
122
- export type LegendMode =
123
- /** Sets the legend as fixed, and has the option to add different shapes showcasing legend items. */
124
- 'Default' |
125
- /** Set the legend as interactive, which is rectangular in shape with an indicator showcasing legend items. */
126
- 'Interactive';
127
- /**
128
- * Defines the type of the layer in maps.
129
- */
130
- export type Type =
131
- /**
132
- * Specifies the provided layer as main layer in the maps.
133
- */
134
- 'Layer' |
135
- /**
136
- * Specifies the provided layer as sublayer in the maps. This layer will be a part of the main layer provided in the maps.
137
- */
138
- 'SubLayer';
139
-
140
- /**
141
- * Defines the type of markers in the maps.
142
- */
143
- export type MarkerType =
144
- /** Specifies that the marker shape should be rendered as a circle on maps. */
145
- 'Circle' |
146
- /** Specifies that the marker shape should be rendered as a rectangle on maps. */
147
- 'Rectangle' |
148
- /** Specifies that the marker shape should be rendered as a cross on maps. */
149
- 'Cross' |
150
- /** Specifies that the marker shape should be rendered as a diamond on maps. */
151
- 'Diamond' |
152
- /** Specifies that the marker shape should be rendered as a star on maps. */
153
- 'Star' |
154
- /** Specifies that the marker shape should be rendered as a balloon on maps. */
155
- 'Balloon' |
156
- /** Specifies that the marker shape should be rendered as a triangle on maps. */
157
- 'Triangle' |
158
- /** Specifies that the marker shape should be rendered as a horizontal line on maps. */
159
- 'HorizontalLine' |
160
- /** Specifies that the marker shape should be rendered as a vertical line on maps. */
161
- 'VerticalLine' |
162
- /** Specifies that the marker shape should be rendered as an image on maps. */
163
- 'Image' |
164
- /** Specifies that the marker shape should be rendered as an inverted triangle on maps. */
165
- 'InvertedTriangle' |
166
- /** Specifies that the marker shape should be rendered as a pentagon on maps. */
167
- 'Pentagon';
168
-
169
- /**
170
- * Defines the projection type of the maps.
171
- */
172
- export type ProjectionType =
173
- /** Specifies the maps to be rendered in Mercator projection type. */
174
- 'Mercator' |
175
- /** Specifies the maps to be rendered in Winklel tripel projection type. */
176
- 'Winkel3' |
177
- /** Specifies the maps to be rendered in Miller projection type. */
178
- 'Miller' |
179
- /** Specifies the maps to be rendered in Eckert III projection type. */
180
- 'Eckert3' |
181
- /** Specifies the maps to be rendered in Eckert V projection type. */
182
- 'Eckert5' |
183
- /** Specifies the maps to be rendered in Eckert VI projection type. */
184
- 'Eckert6' |
185
- /** Specifies the maps to be rendered in Aitoff projection type. */
186
- 'AitOff' |
187
- /** Specifies the maps to be rendered in Equirectangular projection type. */
188
- 'Equirectangular';
189
-
190
- /**
191
- * Defines the zooming tool bar orientation.
192
- */
193
- export type Orientation =
194
- /** Specifies the zooming toolbar to be placed horizontally. */
195
- 'Horizontal' |
196
- /** Specifies the zooming toolbar to be placed vertically. */
197
- 'Vertical';
198
-
199
- /**
200
- * Defines the shape of the legend.
201
- */
202
- export type LegendShape =
203
- /** Specifies to render the legend shape as a circle. */
204
- 'Circle' |
205
- /** Specifies to render the legend shape as a rectangle. */
206
- 'Rectangle' |
207
- /** Specifies to render the legend shape as a triangle. */
208
- 'Triangle' |
209
- /** Specifies to render the legend shape as a diamond. */
210
- 'Diamond' |
211
- /** Specifies to render the legend shape as a cross. */
212
- 'Cross' |
213
- /** Specifies to render the legend shape as a star. */
214
- 'Star' |
215
- /** Specifies to render the legend shape as a horizontal line. */
216
- 'HorizontalLine' |
217
- /** Specifies to render the legend shape as a vertical line. */
218
- 'VerticalLine' |
219
- /** Specifies to render the legend shape as a pentagon. */
220
- 'Pentagon' |
221
- /** Specifies to render the legend shape as a inverted triangle. */
222
- 'InvertedTriangle'|
223
- /** Specifies to render the legend shape as balloon on maps. */
224
- 'Balloon';
225
- /**
226
- * Defines the legend arrangement in the maps.
227
- */
228
- export type LegendArrangement =
229
- /** Specifies the legend items to be placed on a default placement based on legend orientation. */
230
- 'None' |
231
- /** Specifies the legend items to be placed horizontally. */
232
- 'Horizontal' |
233
- /** Specifies the legend items to be placed vertically. */
234
- 'Vertical';
235
-
236
- /**
237
- * Defines the alignment for the annotation.
238
- */
239
- export type AnnotationAlignment =
240
- /** Specifies the annotation to be placed on a default alignment. */
241
- 'None' |
242
- /** Specifies the annotation to be placed near the maps with respect to the position of the legend. */
243
- 'Near' |
244
- /** Specifies the annotation to be placed at the center of the maps with respect to the position of the legend. */
245
- 'Center' |
246
- /** Specifies the annotation to be placed far end of the maps with respect to the position of the legend. */
247
- 'Far';
248
-
249
- /**
250
- * Defines the geometry type.
251
- */
252
- export type GeometryType =
253
- /** Specifies to render the shape maps in geographic coordinate system. */
254
- 'Geographic' |
255
- /** Specifies to render the shape maps in default coordinate system. */
256
- 'Normal';
257
- /**
258
- * Defines the type of the bubble to rendered in the maps.
259
- */
260
- export type BubbleType =
261
- /** Specifies to render the bubble in circle shape. */
262
- 'Circle' |
263
- /** Specifies to render the bubble in square shape. */
264
- 'Square';
265
-
266
- /**
267
- * Defines the placement type of the labels in the legend.
268
- */
269
- export type LabelPosition =
270
- /** Specifies to place the label before the legend shape. */
271
- 'Before' |
272
- /** Specifies to place the label after the legend shape. */
273
- 'After';
274
-
275
- /**
276
- * Defines the action to be performed when the label intersects with other labels in the maps.
277
- */
278
- export type LabelIntersectAction =
279
- /**
280
- * Specifies that no action will be taken when the label contents intersect.
281
- */
282
- 'None' |
283
- /**
284
- * Specifies the data label to be trimmed when it intersects.
285
- */
286
- 'Trim' |
287
- /**
288
- * Specifies the data label to be hidden when it intersects.
289
- */
290
- 'Hide';
291
-
292
- /**
293
- * Specifies the export type for the maps.
294
- */
295
- export type ExportType =
296
- /** Specifies the rendered maps to be exported in the PNG format. */
297
- 'PNG' |
298
- /** Specifies the rendered maps to be exported in the JPEG format. */
299
- 'JPEG' |
300
- /** Specifies the rendered maps to be exported in the SVG format. */
301
- 'SVG' |
302
- /** Specifies the rendered maps to be exported in the PDF format. */
303
- 'PDF';
304
-
305
- /**
306
- * Specifies the direction of panning.
307
- */
308
- export type PanDirection =
309
- /** Specifies the maps to pan in the left direction. */
310
- 'Left' |
311
- /** Specifies the maps to pan in the right direction. */
312
- 'Right' |
313
- /** Specifies the maps to pan in the top direction. */
314
- 'Top' |
315
- /** Specifies the maps to pan in the bottom direction. */
316
- 'Bottom' |
317
- /** Specifies the maps to pan as per the mouse move location. */
318
- 'None';
319
- /**
320
- * Specifies the gesture on the maps in which tooltip must be rendered.
321
- */
322
- export type TooltipGesture =
323
- /** Specifies the tooltip to be shown on mouse hover event. */
324
- 'MouseMove' |
325
- /** Specifies the tooltip to be shown on click event. */
326
- 'Click' |
327
- /** Specifies the tooltip to be shown on double click event. */
328
- 'DoubleClick';
329
-
330
- /**
331
- * Specifies the type of the buttons in the zoom toolbar.
332
- */
333
- export type ToolbarItem =
334
- /** Specifies whether the zoom-in button must be rendered in the zoom toolbar or not. */
335
- 'ZoomIn' |
336
- /** Specifies whether the zoom-out button must be rendered in the zoom toolbar or not. */
337
- 'ZoomOut' |
338
- /** Specifies whether the zoom button must be rendered in the zoom toolbar or not. */
339
- 'Zoom' |
340
- /** Specifies whether the pan button must be rendered in the zoom toolbar or not. */
341
- 'Pan' |
342
- /** Specifies whether the reset zoom button must be rendered in the zoom toolbar or not. */
343
- 'Reset';