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