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