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