@syncfusion/ej2-maps 19.4.56 → 19.4.57-105067
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- 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 -439
- 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 +1161 -638
- package/dist/es6/ej2-maps.es2015.js.map +1 -1
- package/dist/es6/ej2-maps.es5.js +1200 -678
- 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 +152 -90
- 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 +26 -32
- package/src/maps/model/export-pdf.d.ts +4 -6
- package/src/maps/model/export-pdf.js +27 -35
- package/src/maps/model/interface.d.ts +34 -26
- package/src/maps/model/print.d.ts +2 -5
- package/src/maps/model/print.js +33 -21
- 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 +1 -1
- package/src/maps/utils/helper.js +62 -31
package/CHANGELOG.md
CHANGED
|
@@ -1,439 +1,441 @@
|
|
|
1
|
-
<!-- markdownlint-disable MD010 -->
|
|
2
|
-
|
|
3
|
-
<!-- markdownlint-disable MD030 -->
|
|
4
|
-
|
|
5
|
-
<!-- markdownlint-disable MD004 -->
|
|
6
|
-
|
|
7
|
-
# Changelog
|
|
8
|
-
|
|
9
|
-
## [Unreleased]
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
- `#
|
|
128
|
-
- `#
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
- `#
|
|
195
|
-
- `#
|
|
196
|
-
- `#
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
- `#
|
|
230
|
-
|
|
231
|
-
- `#
|
|
232
|
-
|
|
233
|
-
- `#
|
|
234
|
-
|
|
235
|
-
- `#
|
|
236
|
-
|
|
237
|
-
- `#
|
|
238
|
-
|
|
239
|
-
- `
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
- `#
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
- `
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
- `#
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
- `#
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
- Support has been added for
|
|
356
|
-
- Support has been added to
|
|
357
|
-
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
- Support
|
|
421
|
-
- Support has been
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
- **
|
|
432
|
-
- **
|
|
433
|
-
- **
|
|
434
|
-
- **
|
|
435
|
-
- **
|
|
436
|
-
- **
|
|
437
|
-
- **
|
|
438
|
-
- **
|
|
439
|
-
- **
|
|
1
|
+
<!-- markdownlint-disable MD010 -->
|
|
2
|
+
|
|
3
|
+
<!-- markdownlint-disable MD030 -->
|
|
4
|
+
|
|
5
|
+
<!-- markdownlint-disable MD004 -->
|
|
6
|
+
|
|
7
|
+
# Changelog
|
|
8
|
+
|
|
9
|
+
## [Unreleased]
|
|
10
|
+
|
|
11
|
+
## 19.4.56 (2022-03-15)
|
|
12
|
+
|
|
13
|
+
### Maps
|
|
14
|
+
|
|
15
|
+
#### Bug Fixes
|
|
16
|
+
|
|
17
|
+
- `#F173348` - When the Maps control is printed, the position of the markers will now be proper.
|
|
18
|
+
- `#I369134` - When the `initialMarkerSelection` property is set, script errors are no longer thrown.
|
|
19
|
+
|
|
20
|
+
## 19.4.55 (2022-03-08)
|
|
21
|
+
|
|
22
|
+
### Maps
|
|
23
|
+
|
|
24
|
+
#### Bug Fixes
|
|
25
|
+
|
|
26
|
+
- `#I368368` - Drilldown of the Maps will now work properly in the mobile devices.
|
|
27
|
+
|
|
28
|
+
## 19.4.53 (2022-02-22)
|
|
29
|
+
|
|
30
|
+
### Maps
|
|
31
|
+
|
|
32
|
+
#### Bug Fixes
|
|
33
|
+
|
|
34
|
+
- `#I367115` - `markerClick` event will be triggered properly in the Maps control.
|
|
35
|
+
|
|
36
|
+
## 19.4.48 (2022-01-31)
|
|
37
|
+
|
|
38
|
+
### Maps
|
|
39
|
+
|
|
40
|
+
#### Bug Fixes
|
|
41
|
+
|
|
42
|
+
- `#I363761` - Script error will no longer be thrown when the display CSS property for the div element of the Maps control is set to "none".
|
|
43
|
+
|
|
44
|
+
## 19.4.47 (2022-01-25)
|
|
45
|
+
|
|
46
|
+
### Maps
|
|
47
|
+
|
|
48
|
+
#### Bug Fixes
|
|
49
|
+
|
|
50
|
+
- `#SF-360297` - The position of the zoom toolbar will now be proper when the float CSS style is set as "right" in the parent element of the Maps control.
|
|
51
|
+
|
|
52
|
+
## 19.4.42 (2022-01-11)
|
|
53
|
+
|
|
54
|
+
### Maps
|
|
55
|
+
|
|
56
|
+
#### New Features
|
|
57
|
+
|
|
58
|
+
- When the `type` property of `legendSettings` property is set to "Markers", the `useMarkerShapes` property is exposed in the `legendSettings` to render the legend item shapes the same as the marker shapes.
|
|
59
|
+
|
|
60
|
+
#### Bug Fixes
|
|
61
|
+
|
|
62
|
+
- `#SF-360297` - The position of the marker template will now be proper when the float CSS style is set as "right" in the parent element of the Maps control.
|
|
63
|
+
|
|
64
|
+
## 19.4.38 (2021-12-17)
|
|
65
|
+
|
|
66
|
+
### Maps
|
|
67
|
+
|
|
68
|
+
#### New Features
|
|
69
|
+
|
|
70
|
+
- GeoJSON maps with "LineString" geometry type is now supported in the Maps control.
|
|
71
|
+
- When the `animationDuration` property is set, the zooming of map service providers such as OSM, Bing, and others is now smoother.
|
|
72
|
+
|
|
73
|
+
#### Bug Fixes
|
|
74
|
+
|
|
75
|
+
- `#F163990` - When the `imageUrlValuePath` property is set as the source image for the markers, image type markers will render properly.
|
|
76
|
+
|
|
77
|
+
## 19.3.46 (2021-10-19)
|
|
78
|
+
|
|
79
|
+
### Maps
|
|
80
|
+
|
|
81
|
+
#### Bug Fixes
|
|
82
|
+
|
|
83
|
+
- Script error will not be thrown when a shape is selected without binding the data source to the Maps.
|
|
84
|
+
|
|
85
|
+
## 19.3.44 (2021-10-05)
|
|
86
|
+
|
|
87
|
+
### Maps
|
|
88
|
+
|
|
89
|
+
#### Bug Fixes
|
|
90
|
+
|
|
91
|
+
- `#I342201` - When the `projectionType` is set to `Equirectangular`, data labels will now render correctly.
|
|
92
|
+
|
|
93
|
+
## 19.1.59 (2021-05-04)
|
|
94
|
+
|
|
95
|
+
### Maps
|
|
96
|
+
|
|
97
|
+
#### Bug Fixes
|
|
98
|
+
|
|
99
|
+
- `#F164278` - `click` event will now work properly in the mobile devices.
|
|
100
|
+
|
|
101
|
+
## 19.1.57 (2021-04-20)
|
|
102
|
+
|
|
103
|
+
### Maps
|
|
104
|
+
|
|
105
|
+
#### Bug Fixes
|
|
106
|
+
|
|
107
|
+
- `#318561` - When the `height` property is set to a percentage value, Maps can now render with proper height of the parent element.
|
|
108
|
+
|
|
109
|
+
## 19.1.56 (2021-04-13)
|
|
110
|
+
|
|
111
|
+
### Maps
|
|
112
|
+
|
|
113
|
+
#### New Features
|
|
114
|
+
|
|
115
|
+
- `#315251` - The `opacity` property for `border` in `shapeSettings` is exposed to provide opacity for the border of the shapes.
|
|
116
|
+
|
|
117
|
+
#### Bug Fixes
|
|
118
|
+
|
|
119
|
+
- `#F163539` - The data labels will now render properly when the value of `labelPath` of `dataLabelSettings` is different from the value of `shapePropertyPath` and `shapeDataPath`.
|
|
120
|
+
|
|
121
|
+
## 19.1.54 (2021-03-30)
|
|
122
|
+
|
|
123
|
+
### Maps
|
|
124
|
+
|
|
125
|
+
#### Bug Fixes
|
|
126
|
+
|
|
127
|
+
- `#312465` - When the `zoomFactor` property is set as 0 in the tile maps, it now renders properly.
|
|
128
|
+
- `#311273` - The `imageUrlValuePath` property now correctly renders markers as images.
|
|
129
|
+
- `#312865` - Markers will now render properly when they are added dynamically in the click event with "Normal" geometry type maps.
|
|
130
|
+
- `#317398` - `shapeSelection` method will now work properly with multi-layers on the Maps.
|
|
131
|
+
|
|
132
|
+
## 18.4.39 (2021-01-28)
|
|
133
|
+
|
|
134
|
+
### Maps
|
|
135
|
+
|
|
136
|
+
#### New Features
|
|
137
|
+
|
|
138
|
+
- `#306094` - `borderWidthValuePath` and `borderColorValuePath` properties are exposed to set border width and color to individual shapes using data source values.
|
|
139
|
+
|
|
140
|
+
#### Bug Fixes
|
|
141
|
+
|
|
142
|
+
- `#307853` - The property in the JSON for the maps shape data can now be displayed in the tooltip template.
|
|
143
|
+
|
|
144
|
+
## 18.4.30 (2020-12-17)
|
|
145
|
+
|
|
146
|
+
### Maps
|
|
147
|
+
|
|
148
|
+
#### Bug Fixes
|
|
149
|
+
|
|
150
|
+
- `#302270` - The position of the marker cluster will now render properly when the Map control is positioned in an absolute location.
|
|
151
|
+
|
|
152
|
+
## 18.3.51 (2020-11-24)
|
|
153
|
+
|
|
154
|
+
### Maps
|
|
155
|
+
|
|
156
|
+
#### Bug Fixes
|
|
157
|
+
|
|
158
|
+
- `#301355` - The balloon marker will now select properly with `initialMarkerSelection`.
|
|
159
|
+
|
|
160
|
+
## 18.3.44 (2020-10-27)
|
|
161
|
+
|
|
162
|
+
### Maps
|
|
163
|
+
|
|
164
|
+
#### Bug Fixes
|
|
165
|
+
|
|
166
|
+
- `#298697` - The font style of legend and data labels will be now set properly.
|
|
167
|
+
|
|
168
|
+
## 18.3.42 (2020-10-20)
|
|
169
|
+
|
|
170
|
+
### Maps
|
|
171
|
+
|
|
172
|
+
#### Bug Fixes
|
|
173
|
+
|
|
174
|
+
- `#292757` - `doubleClick` event will now be triggered properly.
|
|
175
|
+
|
|
176
|
+
## 18.3.40 (2020-10-13)
|
|
177
|
+
|
|
178
|
+
### Maps
|
|
179
|
+
|
|
180
|
+
#### Bug Fixes
|
|
181
|
+
|
|
182
|
+
- `#292757` - The multiple tile maps in a single page will now work properly.
|
|
183
|
+
|
|
184
|
+
## 18.3.35 (2020-10-01)
|
|
185
|
+
|
|
186
|
+
### Maps
|
|
187
|
+
|
|
188
|
+
#### New Features
|
|
189
|
+
|
|
190
|
+
`#291448` - A property `isShapeSelected` is exposed in the event arguments of the click event to specify whether the map shape is selected or not.
|
|
191
|
+
|
|
192
|
+
#### Bug Fixes
|
|
193
|
+
|
|
194
|
+
- `#F157226` - Marker clusters will now render properly when the markers are added dynamically to the maps.
|
|
195
|
+
- `#289864` - Hyperlinks added in the tooltip template will now be clickable in the click action.
|
|
196
|
+
- `#289034` - Panning will now work properly on mobile devices.
|
|
197
|
+
- `#287918` - Markers will now render properly when the animation duration is greater than 0.
|
|
198
|
+
- `#285727` - Outline for the shapes will no longer appear when clicking on it.
|
|
199
|
+
|
|
200
|
+
## 18.2.47 (2020-07-28)
|
|
201
|
+
|
|
202
|
+
### Maps
|
|
203
|
+
|
|
204
|
+
#### Bug Fixes
|
|
205
|
+
|
|
206
|
+
- `#285727` - Outline for the shapes will no longer appear when clicking on it.
|
|
207
|
+
|
|
208
|
+
## 18.2.44 (2020-07-07)
|
|
209
|
+
|
|
210
|
+
### Maps
|
|
211
|
+
|
|
212
|
+
#### New Features
|
|
213
|
+
|
|
214
|
+
- The data manager support for bubble and marker data source is now available.
|
|
215
|
+
- `Google` enum value is provided in `ShapeLayerType` to render the Google maps in the Maps control.
|
|
216
|
+
- `#280380` - `isResized` argument is exposed in the `loaded` event argument for indicating that the component is resized.
|
|
217
|
+
|
|
218
|
+
#### Bug Fixes
|
|
219
|
+
|
|
220
|
+
- `#278468` - The script errors will not be thrown when rendering the GeoJSON file with line string geometry in Maps control.
|
|
221
|
+
- `#280380` - The center position property will be maintained when the zooming operation is done after the reset zoom.
|
|
222
|
+
|
|
223
|
+
## 17.4.39 (2019-12-17)
|
|
224
|
+
|
|
225
|
+
### Maps
|
|
226
|
+
|
|
227
|
+
#### New Features
|
|
228
|
+
|
|
229
|
+
- `#I244108`, `#I240060`, `#I247767`, `#I250088` - Provided support to zoom the maps initially, based on the marker’s location.
|
|
230
|
+
|
|
231
|
+
- `#I248021` - Provided support to cluster and expand markers with the same latitude and longitude values.
|
|
232
|
+
|
|
233
|
+
- `#I253516` - Provided clustering support for marker templates.
|
|
234
|
+
|
|
235
|
+
- `#I255189` - Improved the `markerClusterClick` event to get the hidden cluster collection details.
|
|
236
|
+
|
|
237
|
+
- `#I242130` - Provided support to select or deselect the shapes dynamically and on initial rendering.
|
|
238
|
+
|
|
239
|
+
- `#I248172` - Provided support to show tooltip on tap/click.
|
|
240
|
+
|
|
241
|
+
- `F146103`, `F147309` - Provided support to bind the shapes and colors to the markers from the data source.
|
|
242
|
+
|
|
243
|
+
## 17.3.21 (2019-10-30)
|
|
244
|
+
|
|
245
|
+
### Maps
|
|
246
|
+
|
|
247
|
+
#### New Features
|
|
248
|
+
|
|
249
|
+
- Improved the marker cluster appearance for duplicate markers.
|
|
250
|
+
|
|
251
|
+
## 17.3.14 (2019-10-03)
|
|
252
|
+
|
|
253
|
+
### Maps
|
|
254
|
+
|
|
255
|
+
#### Bug Fixes
|
|
256
|
+
|
|
257
|
+
- `F147309` - Issue in adding sub layer in the 'OpenStreetMap' has been resolved.
|
|
258
|
+
|
|
259
|
+
## 17.3.9-beta (2019-09-20)
|
|
260
|
+
|
|
261
|
+
### Maps
|
|
262
|
+
|
|
263
|
+
#### New Features
|
|
264
|
+
|
|
265
|
+
- The toggle option has been provided for legend. So, if you toggle the legend, the given color will be changed to the corresponding shape item.
|
|
266
|
+
|
|
267
|
+
## 17.2.41 (2019-08-14)
|
|
268
|
+
|
|
269
|
+
### Maps
|
|
270
|
+
|
|
271
|
+
#### Bug Fixes
|
|
272
|
+
|
|
273
|
+
- `#244108` - The issue with legend border that does not disappear when hover over the legend item has been fixed.
|
|
274
|
+
- The issue with tooltip was not working in Internet Explorer 11 browser has been fixed.
|
|
275
|
+
|
|
276
|
+
## 17.2.40 (2019-08-06)
|
|
277
|
+
|
|
278
|
+
### Maps
|
|
279
|
+
|
|
280
|
+
#### Bug Fixes
|
|
281
|
+
|
|
282
|
+
- `#I243271` - The issue with changing text in our component when the text argument is changed in the datalabelRendering event has been fixed.
|
|
283
|
+
- `#I243499` - The issue with arrow option in the navigation line has been fixed.
|
|
284
|
+
- `#I238404` - The issue with bubble color and size when using point type shape data has been fixed.
|
|
285
|
+
|
|
286
|
+
## 17.2.39 (2019-07-30)
|
|
287
|
+
|
|
288
|
+
### Maps
|
|
289
|
+
|
|
290
|
+
#### Bug Fixes
|
|
291
|
+
|
|
292
|
+
- `#I240804` - The issue with dynamically updating the zoom factor along with the initial case of the zoom factor has been fixed.
|
|
293
|
+
- `#I240836` - The issue with border that was not applied for marker highlight and selection has been fixed.
|
|
294
|
+
|
|
295
|
+
## 17.2.36 (2019-07-24)
|
|
296
|
+
|
|
297
|
+
### Maps
|
|
298
|
+
|
|
299
|
+
#### Bug Fixes
|
|
300
|
+
|
|
301
|
+
- `#I240833` - Some labels disappear when you change "colorMapping" and refresh the map issue has been fixed.
|
|
302
|
+
- `I240804` - The issue with dynamically updating the zoom factor has been fixed
|
|
303
|
+
- `I241873` - The issue with zooming the map component with a single click has been fixed
|
|
304
|
+
|
|
305
|
+
## 17.2.35 (2019-07-17)
|
|
306
|
+
|
|
307
|
+
### Maps
|
|
308
|
+
|
|
309
|
+
#### Bug Fixes
|
|
310
|
+
|
|
311
|
+
- `#I240835` - Highlight border thickness on the shape is huge when hovering on the legend item, it does not set as we given in code issue has been fixed
|
|
312
|
+
- `#I240836` - Marker highlight and selection settings do not make a difference issue has been fixed
|
|
313
|
+
- `#I240834` - Interactive legend is not working while changing data source issue has been fixed.
|
|
314
|
+
|
|
315
|
+
## 17.2.34 (2019-07-11)
|
|
316
|
+
|
|
317
|
+
### Maps
|
|
318
|
+
|
|
319
|
+
#### Bug Fixes
|
|
320
|
+
|
|
321
|
+
- `#F143717` - Zooming toolbar position misalign problem that occurs when there are multiple elements in DOM has been fixed
|
|
322
|
+
- `#I238404` - The issue that occurs when rendering bubble for point type Shape Data has been fixed
|
|
323
|
+
- `#I238839` - The console error that occurs when mouse leaves from the maps Shapes with legend hide option has been resolved
|
|
324
|
+
|
|
325
|
+
## 17.1.32-beta (2019-03-13)
|
|
326
|
+
|
|
327
|
+
### Maps
|
|
328
|
+
|
|
329
|
+
#### Bug Fixes
|
|
330
|
+
|
|
331
|
+
- Now, the border style is applied properly to the shapes when performing selection.
|
|
332
|
+
|
|
333
|
+
## 16.4.55 (2019-02-27)
|
|
334
|
+
|
|
335
|
+
### Maps
|
|
336
|
+
|
|
337
|
+
#### Bug Fixes
|
|
338
|
+
|
|
339
|
+
- Changed the OSM and Bing maps URL from http to https.
|
|
340
|
+
|
|
341
|
+
## 16.4.53 (2019-02-13)
|
|
342
|
+
|
|
343
|
+
### Maps
|
|
344
|
+
|
|
345
|
+
#### Bug Fixes
|
|
346
|
+
|
|
347
|
+
- Padding issue for OSM type layers resolved now.
|
|
348
|
+
|
|
349
|
+
## 16.4.40-beta (2018-12-10)
|
|
350
|
+
|
|
351
|
+
### Maps
|
|
352
|
+
|
|
353
|
+
#### New Features
|
|
354
|
+
|
|
355
|
+
- Support has been added for desaturation color mapping.
|
|
356
|
+
- Support has been added to hide specific legend items and bind legend text from data source.
|
|
357
|
+
- Support has been added for highlighting or selecting the legend items along with shapes.
|
|
358
|
+
- Support has been added to specify multiple fields in the data source for **shapePropertyPath**.
|
|
359
|
+
- Events has been added for zoom-in and zoom-out.
|
|
360
|
+
|
|
361
|
+
## 16.3.33 (2018-11-20)
|
|
362
|
+
|
|
363
|
+
### Maps
|
|
364
|
+
|
|
365
|
+
#### Bug Fixes
|
|
366
|
+
|
|
367
|
+
- Now map is rendering properly in universal applications
|
|
368
|
+
- Now panning works properly without freezing
|
|
369
|
+
|
|
370
|
+
## 16.3.22 (2018-09-25)
|
|
371
|
+
|
|
372
|
+
### Maps
|
|
373
|
+
|
|
374
|
+
#### Bug Fixes
|
|
375
|
+
|
|
376
|
+
- Now the data labels are rendering properly with numeric values.
|
|
377
|
+
|
|
378
|
+
## 16.3.17 (2018-09-12)
|
|
379
|
+
|
|
380
|
+
### Maps
|
|
381
|
+
|
|
382
|
+
#### Breaking Changes
|
|
383
|
+
|
|
384
|
+
- The maps tooltip has been replaced with `EJ2 SVG Tooltip`, so now it is mandatory to include `ej2-svg-base.umd.min.js` in system.js configuration if you are using system.js module loader. Update the system.js configuration while using this version and above.
|
|
385
|
+
|
|
386
|
+
#### Bug Fixes
|
|
387
|
+
|
|
388
|
+
- Tooltip is now working properly for marker in OSM map.
|
|
389
|
+
|
|
390
|
+
## 16.2.49 (2018-08-21)
|
|
391
|
+
|
|
392
|
+
### Maps
|
|
393
|
+
|
|
394
|
+
#### Bug Fixes
|
|
395
|
+
|
|
396
|
+
- Shape selection is now working fine with touch events.
|
|
397
|
+
|
|
398
|
+
## 16.2.45 (2018-07-17)
|
|
399
|
+
|
|
400
|
+
### Maps
|
|
401
|
+
|
|
402
|
+
#### Bug Fixes
|
|
403
|
+
|
|
404
|
+
- Marker click event is now working fine with OSM layer.
|
|
405
|
+
|
|
406
|
+
## 16.2.44 (2018-07-10)
|
|
407
|
+
|
|
408
|
+
### Maps
|
|
409
|
+
|
|
410
|
+
#### Bug Fixes
|
|
411
|
+
|
|
412
|
+
- Bing map type is changed as AerialWithLabels and now it is rendering properly with labels.
|
|
413
|
+
|
|
414
|
+
## 16.2.41 (2018-06-25)
|
|
415
|
+
|
|
416
|
+
### Maps
|
|
417
|
+
|
|
418
|
+
#### New Features
|
|
419
|
+
|
|
420
|
+
- Support has been added for animating the shapes on zooming.
|
|
421
|
+
- Support has been added to trim the maps title, when it exceeds the available width.
|
|
422
|
+
- Support had been provided for printing and exporting the maps.
|
|
423
|
+
- Support has been provided for printing.
|
|
424
|
+
|
|
425
|
+
## 16.1.24 (2018-02-22)
|
|
426
|
+
|
|
427
|
+
### Maps
|
|
428
|
+
|
|
429
|
+
The Maps control is used to visualize the geographical data. It is used to represent the statistical data of a particular geographical area on Earth, with user interactivity and provides various customizing options. All the map elements are rendered using Scalable Vector Graphics (SVG).
|
|
430
|
+
|
|
431
|
+
- **Layers** - Map is maintained through layers and it can accommodate one or more layers.
|
|
432
|
+
- **GeoJSON Data Input** - Supports GeoJSON data, which allows you to plot your own shapes in the maps.
|
|
433
|
+
- **Map Providers** - Supports map providers such as Bing and OpenStreetMap that can be added to any layers.
|
|
434
|
+
- **Projection** - Supports 6 types of map projections.
|
|
435
|
+
- **Marker** - Supports 10 types of marker shapes and also takes custom HTML element.
|
|
436
|
+
- **Bubbles** - Supports 2 types of bubbles such as Circle and Square.
|
|
437
|
+
- **Legend** - Supports legend which is useful in providing additional information about shapes, bubbles and markers with paging and customization options.
|
|
438
|
+
- **Data Labels** - Supports data label to provide additional information about the shapes.
|
|
439
|
+
- **Navigation Lines** - Lines can be rendered between various points in map.
|
|
440
|
+
- **Annotations** - Supports placing any HTML element on desired location in the map.
|
|
441
|
+
- **User interaction** - Supports interactive features like zooming, panning, tooltip, highlight, selection and interactive legend.
|