@syncfusion/ej2-angular-maps 24.1.41 → 24.1.47-ngcc

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 (44) hide show
  1. package/@syncfusion/ej2-angular-maps.es5.js +877 -0
  2. package/@syncfusion/ej2-angular-maps.es5.js.map +1 -0
  3. package/@syncfusion/ej2-angular-maps.js +810 -0
  4. package/@syncfusion/ej2-angular-maps.js.map +1 -0
  5. package/CHANGELOG.md +663 -0
  6. package/README.md +1 -1
  7. package/dist/ej2-angular-maps.umd.js +1128 -0
  8. package/dist/ej2-angular-maps.umd.js.map +1 -0
  9. package/dist/ej2-angular-maps.umd.min.js +11 -0
  10. package/dist/ej2-angular-maps.umd.min.js.map +1 -0
  11. package/{syncfusion-ej2-angular-maps.d.ts → ej2-angular-maps.d.ts} +1 -1
  12. package/ej2-angular-maps.metadata.json +1 -0
  13. package/package.json +15 -29
  14. package/postinstall/tagchange.js +18 -0
  15. package/schematics/utils/lib-details.d.ts +2 -2
  16. package/schematics/utils/lib-details.js +2 -2
  17. package/schematics/utils/lib-details.ts +2 -2
  18. package/src/maps/annotations.directive.d.ts +0 -5
  19. package/src/maps/bubblesettings.directive.d.ts +0 -5
  20. package/src/maps/colormapping.directive.d.ts +0 -5
  21. package/src/maps/initialshapeselection.directive.d.ts +0 -5
  22. package/src/maps/layers.directive.d.ts +4 -9
  23. package/src/maps/maps-all.module.d.ts +0 -6
  24. package/src/maps/maps.component.d.ts +0 -3
  25. package/src/maps/maps.module.d.ts +0 -13
  26. package/src/maps/markersettings.directive.d.ts +0 -5
  27. package/src/maps/navigationlinesettings.directive.d.ts +0 -5
  28. package/esm2020/public_api.mjs +0 -3
  29. package/esm2020/src/index.mjs +0 -12
  30. package/esm2020/src/maps/annotations.directive.mjs +0 -62
  31. package/esm2020/src/maps/bubblesettings.directive.mjs +0 -71
  32. package/esm2020/src/maps/colormapping.directive.mjs +0 -61
  33. package/esm2020/src/maps/initialshapeselection.directive.mjs +0 -59
  34. package/esm2020/src/maps/layers.directive.mjs +0 -64
  35. package/esm2020/src/maps/maps-all.module.mjs +0 -68
  36. package/esm2020/src/maps/maps.component.mjs +0 -168
  37. package/esm2020/src/maps/maps.module.mjs +0 -88
  38. package/esm2020/src/maps/markersettings.directive.mjs +0 -73
  39. package/esm2020/src/maps/navigationlinesettings.directive.mjs +0 -67
  40. package/esm2020/syncfusion-ej2-angular-maps.mjs +0 -5
  41. package/fesm2015/syncfusion-ej2-angular-maps.mjs +0 -739
  42. package/fesm2015/syncfusion-ej2-angular-maps.mjs.map +0 -1
  43. package/fesm2020/syncfusion-ej2-angular-maps.mjs +0 -739
  44. package/fesm2020/syncfusion-ej2-angular-maps.mjs.map +0 -1
package/CHANGELOG.md ADDED
@@ -0,0 +1,663 @@
1
+ <!-- markdownlint-disable MD010 -->
2
+
3
+
4
+ <!-- markdownlint-disable MD030 -->
5
+
6
+
7
+ <!-- markdownlint-disable MD004 -->
8
+
9
+
10
+ # Changelog
11
+
12
+ ## [Unreleased]
13
+
14
+ ### Maps
15
+
16
+ #### New Features
17
+
18
+ - `#I524572` - The threshold limit for rendering the markers and marker clusters has now been increased, with improved performance to a decent extent. Nearly 6,000 markers can now be rendered and clustered, with enhanced rendering, zooming, and panning functionalities.
19
+
20
+ ## 24.1.41 (2023-12-18)
21
+
22
+ ### Maps
23
+
24
+ #### New Features
25
+
26
+ - `#I492437` - `minLatitude`, `maxLatitude`, `minLongitude` and `maxLongitude` properties are now available in the event arguments of `zoom` and `pan` events to provide the coordinates of the visible area of the Maps. `getMinMaxLatitudeLongitude` method is also available to provide these coordinate values dynamically.
27
+ - Polygon shapes can now be displayed over map layers by using the appropriate data source. Polygon shapes in Maps can be customized, selected, and highlighted using the properties available.
28
+
29
+ #### Bug Fixes
30
+
31
+ - `#523327` - The Maps no longer zooms when clicked on the tooltip template in the Maps component with the `zoomOnClick` property set to true.
32
+
33
+ ## 23.2.7 (2023-12-05)
34
+
35
+ ### Maps
36
+
37
+ #### Bug Fixes
38
+
39
+ - `#519916` - When set as an object in the array, the `navigationLineSettings` property will now be updated.
40
+
41
+ ## 23.1.42 (2023-10-24)
42
+
43
+ ### Maps
44
+
45
+ #### Bug Fixes
46
+
47
+ - `#I511944` - When the marker template is clicked, the `markerClick` event will now work properly.
48
+
49
+ ## 23.1.40 (2023-10-10)
50
+
51
+ ### Maps
52
+
53
+ #### Bug Fixes
54
+
55
+ - `#I504008` - The zoom factor of the Maps will now be properly updated when the `zoomByPosition` method is called in the `zoom` event.
56
+
57
+ ## 23.1.38 (2023-09-26)
58
+
59
+ ### Maps
60
+
61
+ #### Bug Fixes
62
+
63
+ - `#I497871` - After adding a marker using the `addMarker` method, marker locations will now be correct when zooming and panning is performed on the Maps.
64
+
65
+ ## 23.1.36 (2023-09-15)
66
+
67
+ ### Maps
68
+
69
+ #### New Features
70
+
71
+ - An animated transition will now occur on the initial rendering of data labels and not during any dynamic updates.
72
+
73
+ #### Bug Fixes
74
+
75
+ - `#I493376` - The tooltip will now be displayed properly above the marker templates.
76
+
77
+ ## 22.2.8 (2023-08-08)
78
+
79
+ ### Maps
80
+
81
+ #### Bug Fixes
82
+
83
+ - `#I485498` - Mouse events will now work properly on the marker templates.
84
+
85
+ ## 22.1.39 (2023-07-18)
86
+
87
+ ### Maps
88
+
89
+ #### Bug Fixes
90
+
91
+ - `#I482286` - When the page containing the Maps, which is placed in the dashboard, is switched dynamically, script errors are no longer thrown.
92
+
93
+ ## 22.1.34 (2023-06-21)
94
+
95
+ ### Maps
96
+
97
+ #### New Features
98
+
99
+ - `#I275734`, `#I293775` - The appearance of the buttons and tooltips in the zoom toolbar can now be customized using properties in the `buttonSettings` and `tooltipSettings` in the `toolbarSettings` property of `zoomSettings`.
100
+ - `#I425592` - The marker rendered in the Maps can now be dragged and dropped in the desired location based on the requirement. Events are also supported to notify the drag start and end.
101
+
102
+ ## 20.4.38 (2022-12-21)
103
+
104
+ ### Maps
105
+
106
+ #### New Features
107
+
108
+ - When panning is performed, the image rendering in online map providers is now improved.
109
+
110
+ ## 20.3.56 (2022-11-08)
111
+
112
+ ### Maps
113
+
114
+ #### Bug Fixes
115
+
116
+ - `#I413909` - When the highlight is removed from the interactive legend, the opacity of the corresponding shape is now properly maintained.
117
+ - `#I412101` - `shapeHighlight` event will now trigger properly.
118
+ - `#I411790` - `zoomByPosition` method will now work properly in the online map providers.
119
+ - `#I401870` - The fixes for the styles, related to the Content Security Policy (CSP), are included.
120
+
121
+ ## 20.3.49 (2022-10-11)
122
+
123
+ ### Maps
124
+
125
+ #### Bug Fixes
126
+
127
+ - `#I408673` - Data labels will now render properly when the values from `shapeDataPath` and `shapePropertyPath` are numbers.
128
+
129
+ ## 20.3.47 (2022-09-29)
130
+
131
+ ### Maps
132
+
133
+ #### Breaking Changes
134
+
135
+ - The `click` event is deprecated because it is triggered twice in the Angular application. The reason for this is that in Angular, the native `click` event is triggered first, followed by the `click` event available on Maps. To address this, we introduced a `onclick` event for the same functionality, which will now only trigger once.
136
+
137
+ #### Bug Fixes
138
+
139
+ - `#I404496` - Europe GeoJSON map will now render properly when legend is enabled.
140
+ - `#F175229` - `offsetX` and `offsetY` properties are now available in the event arguments of `dataLabelRendering` event to customize the label position.
141
+
142
+ #### New Features
143
+
144
+ - Azure Maps can now be loaded and viewed through our Maps.
145
+
146
+ ## 20.2.43 (2022-08-08)
147
+
148
+ ### Maps
149
+
150
+ #### New Features
151
+
152
+ - `#I390757` - As an alternative to the `click` event, the `onclick` event is exposed.
153
+
154
+ #### Bug Fixes
155
+
156
+ - `#I392653` - The `content` property in the event argument can now be used to customize the layer tooltip with format in the `tooltipRender` event.
157
+ - `#F174180` - Maps will function properly when adding and removing layers via the `zoom` event.
158
+
159
+ ## 20.2.38 (2022-07-12)
160
+
161
+ ### Maps
162
+
163
+ #### Bug Fixes
164
+
165
+ - `#I388045` - In mobile devices, the marker tooltip will now render properly when touched.
166
+
167
+ ## 20.2.36 (2022-06-30)
168
+
169
+ ### Maps
170
+
171
+ #### New Features
172
+
173
+ - GeoJSON data with geometry types like "MultiLineString," "MultiPoint," and "GeometryCollection" can now be displayed in Maps.
174
+ - `#F170451` - `urlTemplate` has been extended to accept tile server URLs from online map providers like ESRI, TomTom, and Mapbox.
175
+ - `#I326902` - Support for legend is provided when markers or sublayers are rendered in the online map providers.
176
+
177
+ ## 20.1.59 (2022-06-07)
178
+
179
+ ### Maps
180
+
181
+ #### Bug Fixes
182
+
183
+ - "Maps throws script error while resizing the window in React 18 sample" issue has been resolved.
184
+
185
+ ## 20.1.48 (2022-04-12)
186
+
187
+ ### Maps
188
+
189
+ #### Bug Fixes
190
+
191
+ - `#F174008` - `cancel` argument of the `zoom` event will work as expected when the value is set as **true**.
192
+
193
+ ## 20.1.47 (2022-04-04)
194
+
195
+ ### Maps
196
+
197
+ #### New Features
198
+
199
+ - Maps control now supports keyboard interaction for zooming, navigating, and other functions.
200
+
201
+ #### Bug Fixes
202
+
203
+ - `#F173348` - When the Maps control is printed, the position of the markers will now be proper.
204
+
205
+ ## 19.4.38 (2021-12-17)
206
+
207
+ ### Maps
208
+
209
+ #### New Features
210
+
211
+ - GeoJSON maps with "LineString" geometry type is now supported in the Maps control.
212
+ - When the `animationDuration` property is set, the zooming of map service providers such as OSM, Bing, and others is now smoother.
213
+
214
+ #### Bug Fixes
215
+
216
+ - `#F163990` - When the `imageUrlValuePath` property is set as the source image for the markers, image type markers will render properly.
217
+
218
+ ## 19.3.46 (2021-10-19)
219
+
220
+ ### Maps
221
+
222
+ #### Bug Fixes
223
+
224
+ - Script error will not be thrown when a shape is selected without binding the data source to the Maps.
225
+
226
+ ## 19.3.44 (2021-10-05)
227
+
228
+ ### Maps
229
+
230
+ #### Bug Fixes
231
+
232
+ - `#I342201` - When the `projectionType` is set to `Equirectangular`, data labels will now render correctly.
233
+
234
+ ## 19.1.59 (2021-05-04)
235
+
236
+ ### Maps
237
+
238
+ #### Bug Fixes
239
+
240
+ - `#F164278` - `click` event will now work properly in the mobile devices.
241
+
242
+ ## 19.1.57 (2021-04-20)
243
+
244
+ ### Maps
245
+
246
+ #### Bug Fixes
247
+
248
+ - `#318561` - When the `height` property is set to a percentage value, Maps can now render with proper height of the parent element.
249
+
250
+ ## 19.1.56 (2021-04-13)
251
+
252
+ ### Maps
253
+
254
+ #### New Features
255
+
256
+ - `#315251` - The `opacity` property for `border` in `shapeSettings` is exposed to provide opacity for the border of the shapes.
257
+
258
+ #### Bug Fixes
259
+
260
+ - `#F163539` - The data labels will now render properly when the value of `labelPath` of `dataLabelSettings` is different from the value of `shapePropertyPath` and `shapeDataPath`.
261
+
262
+ ## 19.1.54 (2021-03-30)
263
+
264
+ ### Maps
265
+
266
+ #### Bug Fixes
267
+
268
+ - `#312465` - When the `zoomFactor` property is set as 0 in the tile maps, it now renders properly.
269
+ - `#311273` - The `imageUrlValuePath` property now correctly renders markers as images.
270
+ - `#312865` - Markers will now render properly when they are added dynamically in the click event with "Normal" geometry type maps.
271
+ - `#317398` - `shapeSelection` method will now work properly with multi-layers on the Maps.
272
+
273
+ ## 18.4.39 (2021-01-28)
274
+
275
+ ### Maps
276
+
277
+ #### New Features
278
+
279
+ - `#306094` - `borderWidthValuePath` and `borderColorValuePath` properties are exposed to set border width and color to individual shapes using data source values.
280
+
281
+ #### Bug Fixes
282
+
283
+ - `#307853` - The property in the JSON for the maps shape data can now be displayed in the tooltip template.
284
+
285
+ ## 18.4.30 (2020-12-17)
286
+
287
+ ### Maps
288
+
289
+ #### Bug Fixes
290
+
291
+ - `#302270` - The position of the marker cluster will now render properly when the Map control is positioned in an absolute location.
292
+
293
+ ## 18.3.51 (2020-11-24)
294
+
295
+ ### Maps
296
+
297
+ #### Bug Fixes
298
+
299
+ - `#301355` - The balloon marker will now select properly with `initialMarkerSelection`.
300
+
301
+ ## 18.3.44 (2020-10-27)
302
+
303
+ ### Maps
304
+
305
+ #### Bug Fixes
306
+
307
+ - `#298697` - The font style of legend and data labels will be now set properly.
308
+
309
+ ## 18.3.42 (2020-10-20)
310
+
311
+ ### Maps
312
+
313
+ #### Bug Fixes
314
+
315
+ - `#292757` - `doubleClick` event will now be triggered properly.
316
+
317
+ ## 18.3.40 (2020-10-13)
318
+
319
+ ### Maps
320
+
321
+ #### Bug Fixes
322
+
323
+ - `#292757` - The multiple tile maps in a single page will now work properly.
324
+
325
+ ## 18.3.35 (2020-10-01)
326
+
327
+ ### Maps
328
+
329
+ #### New Features
330
+
331
+ `#291448` - A property `isShapeSelected` is exposed in the event arguments of the click event to specify whether the map shape is selected or not.
332
+
333
+
334
+ #### Bug Fixes
335
+
336
+ - `#F157226` - Marker clusters will now render properly when the markers are added dynamically to the maps.
337
+ - `#289864` - Hyperlinks added in the tooltip template will now be clickable in the click action.
338
+ - `#289034` - Panning will now work properly on mobile devices.
339
+ - `#287918` - Markers will now render properly when the animation duration is greater than 0.
340
+ - `#285727` - Outline for the shapes will no longer appear when clicking on it.
341
+
342
+ ## 18.2.47 (2020-07-28)
343
+
344
+ ### Maps
345
+
346
+ #### Bug Fixes
347
+
348
+ - `#285727` - Outline for the shapes will no longer appear when clicking on it.
349
+
350
+ ## 18.2.44 (2020-07-07)
351
+
352
+ ### Maps
353
+
354
+ #### New Features
355
+
356
+ - The data manager support for bubble and marker data source is now available.
357
+ - `Google` enum value is provided in `ShapeLayerType` to render the Google maps in the Maps control.
358
+ - `#280380` - `isResized` argument is exposed in the `loaded` event argument for indicating that the component is resized.
359
+
360
+ - The data manager support for bubble and marker data source is now available.
361
+ - `Google` enum value is provided in `ShapeLayerType` to render the Google maps in the Maps control.
362
+
363
+ #### Bug Fixes
364
+
365
+ - `#278468` - The script errors will not be thrown when rendering the GeoJSON file with line string geometry in Maps control.
366
+ - `#280380` - The center position property will be maintained when the zooming operation is done after the reset zoom.
367
+
368
+ - `#I278468` - The script errors will not be thrown when rendering the GeoJSON file with line string geometry in Maps control.
369
+
370
+ ## 17.4.39 (2019-12-17)
371
+
372
+ ### Maps
373
+
374
+ #### New Features
375
+
376
+ - `#I244108`, `#I240060`, `#I247767`, `#I250088` - Provided support to zoom the maps initially, based on the marker’s location.
377
+ - `#I248021` - Provided support to cluster and expand markers with the same latitude and longitude values.
378
+ - `#I253516` - Provided clustering support for marker templates.
379
+ - `#I255189` - Improved the `markerClusterClick` event to get the hidden cluster collection details.
380
+ - `#I242130` - Provided support to select or deselect the shapes dynamically and on initial rendering.
381
+ - `#I248172` - Provided support to show tooltip on tap/click.
382
+ - `F146103`, `F147309` - Provided support to bind the shapes and colors to the markers from the data source.
383
+
384
+ ## 17.3.21 (2019-10-30)
385
+
386
+ ### Maps
387
+
388
+ #### New Features
389
+
390
+ - Improved the marker cluster appearance for duplicate markers.
391
+
392
+ ## 17.3.14 (2019-10-03)
393
+
394
+ ### Maps
395
+
396
+ #### Bug Fixes
397
+
398
+ - `F147309` - Issue in adding sub layer in the 'OpenStreetMap' has been resolved.
399
+
400
+ ## 17.3.9-beta (2019-09-20)
401
+
402
+ ### Maps
403
+
404
+ #### New Features
405
+
406
+ - 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.
407
+
408
+ ## 17.2.41 (2019-08-14)
409
+
410
+ ### Maps
411
+
412
+ #### Bug Fixes
413
+
414
+ - `#244108` - The issue with legend border that does not disappear when hover over the legend item has been fixed.
415
+ - The issue with tooltip was not working in Internet Explorer 11 browser has been fixed.
416
+
417
+ ## 17.2.40 (2019-08-06)
418
+
419
+ ### Maps
420
+
421
+ #### Bug Fixes
422
+
423
+ - `#I243271` - The issue with changing text in our component when the text argument is changed in the datalabelRendering event has been fixed.
424
+ - `#I243499` - The issue with arrow option in the navigation line has been fixed.
425
+ - `#I238404` - The issue with bubble color and size when using point type shape data has been fixed.
426
+
427
+ ## 17.2.39 (2019-07-30)
428
+
429
+ ### Maps
430
+
431
+ #### Bug Fixes
432
+
433
+ - `#I240804` - The issue with dynamically updating the zoom factor along with the initial case of the zoom factor has been fixed.
434
+ - `#I240836` - The issue with border that was not applied for marker highlight and selection has been fixed.
435
+
436
+ ## 17.2.36 (2019-07-24)
437
+
438
+ ### Maps
439
+
440
+ #### Bug Fixes
441
+
442
+ - `#I240833` - Some labels disappear when you change "colorMapping" and refresh the map issue has been fixed.
443
+ - `I240804` - The issue with dynamically updating the zoom factor has been fixed
444
+ - `I241873` - The issue with zooming the map component with a single click has been fixed
445
+
446
+ ## 17.2.35 (2019-07-17)
447
+
448
+ ### Maps
449
+
450
+ #### Bug Fixes
451
+
452
+ - `#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
453
+ - `#I240836` - Marker highlight and selection settings do not make a difference issue has been fixed
454
+ - `#I240834` - Interactive legend is not working while changing data source issue has been fixed.
455
+
456
+ ## 17.2.34 (2019-07-11)
457
+
458
+ ### Maps
459
+
460
+ #### Bug Fixes
461
+
462
+ - `#F143717` - Zooming toolbar position misalign problem that occurs when there are multiple elements in DOM has been fixed
463
+ - `#I238404` - The issue that occurs when rendering bubble for point type Shape Data has been fixed
464
+ - `#I238839` - The console error that occurs when mouse leaves from the maps Shapes with legend hide option has been resolved
465
+
466
+ ## 17.1.32-beta (2019-03-13)
467
+
468
+ ### Maps
469
+
470
+ #### Bug Fixes
471
+
472
+ - Now, the border style is applied properly to the shapes when performing selection.
473
+
474
+ ## 16.4.55 (2019-02-27)
475
+
476
+ ### Maps
477
+
478
+ #### Bug Fixes
479
+
480
+ - Changed the OSM and Bing maps URL from http to https.
481
+
482
+ ## 16.4.53 (2019-02-13)
483
+
484
+ ### Maps
485
+
486
+ #### Bug Fixes
487
+
488
+ - Padding issue for OSM type layers resolved now.
489
+
490
+ ## 16.4.40-beta (2018-12-10)
491
+
492
+ ### Maps
493
+
494
+ #### New Features
495
+
496
+ - Support has been added for desaturation color mapping.
497
+ - Support has been added to hide specific legend items and bind legend text from data source.
498
+ - Support has been added for highlighting or selecting the legend items along with shapes.
499
+ - Support has been added to specify multiple fields in the data source for **shapePropertyPath**.
500
+ - Events has been added for zoom-in and zoom-out.
501
+
502
+ ## 16.3.33 (2018-11-20)
503
+
504
+ ### Maps
505
+
506
+ #### Bug Fixes
507
+
508
+ - Now map is rendering properly in universal applications
509
+ - Now panning works properly without freezing
510
+
511
+ ## 16.3.22 (2018-09-25)
512
+
513
+ ### Maps
514
+
515
+ #### Bug Fixes
516
+
517
+ - Now the data labels are rendering properly with numeric values.
518
+
519
+ ## 16.3.17 (2018-09-12)
520
+
521
+ ### Maps
522
+
523
+ #### Breaking Changes
524
+
525
+ - 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.
526
+
527
+ #### Bug Fixes
528
+
529
+ - Tooltip is now working properly for marker in OSM map.
530
+
531
+ ## 16.2.49 (2018-08-21)
532
+
533
+ ### Maps
534
+
535
+ #### Bug Fixes
536
+
537
+ - Shape selection is now working fine with touch events.
538
+
539
+ ## 16.2.45 (2018-07-17)
540
+
541
+ ### Maps
542
+
543
+ #### Bug Fixes
544
+
545
+ - Marker click event is now working fine with OSM layer.
546
+
547
+ ## 16.2.44 (2018-07-10)
548
+
549
+ ### Maps
550
+
551
+ #### Bug Fixes
552
+
553
+ - Bing map type is changed as AerialWithLabels and now it is rendering properly with labels.
554
+
555
+ ## 16.2.41 (2018-06-25)
556
+
557
+ ### Maps
558
+
559
+ #### New Features
560
+
561
+ - Support has been added for animating the shapes on zooming.
562
+ - Support has been added to trim the maps title, when it exceeds the available width.
563
+ - Support had been provided for printing and exporting the maps.
564
+ - Support has been provided for printing.
565
+
566
+ - Support has been added for animating the shapes on zooming.
567
+ - Support has been added to trim the maps title, when it exceeds the available width.
568
+ - Support had been provided for printing and exporting the maps.
569
+ - Support has been provided for printing.
570
+
571
+
572
+ ## 16.1.24 (2018-02-22)
573
+
574
+ ### Maps
575
+
576
+ 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).
577
+
578
+
579
+ - **Layers** - Map is maintained through layers and it can accommodate one or more layers.
580
+ - **GeoJSON Data Input** - Supports GeoJSON data, which allows you to plot your own shapes in the maps.
581
+ - **Map Providers** - Supports map providers such as Bing and OpenStreetMap that can be added to any layers.
582
+ - **Projection** - Supports 6 types of map projections.
583
+ - **Marker** - Supports 10 types of marker shapes and also takes custom HTML element.
584
+ - **Bubbles** - Supports 2 types of bubbles such as Circle and Square.
585
+ - **Legend** - Supports legend which is useful in providing additional information about shapes, bubbles and markers with paging and customization options.
586
+ - **Data Labels** - Supports data label to provide additional information about the shapes.
587
+ - **Navigation Lines** - Lines can be rendered between various points in map.
588
+ - **Annotations** - Supports placing any HTML element on desired location in the map.
589
+ - **User interaction** - Supports interactive features like zooming, panning, tooltip, highlight, selection and interactive legend.
590
+
591
+
592
+ ## 17.2.28-beta (2019-06-27)
593
+
594
+ ### Maps
595
+
596
+ #### New Features
597
+
598
+ - `#I227277` - Support has been provided to get geo location when clicking on maps.
599
+ - `#I217458` - Support has been provided to hide and cluster a marker when it intersects with other markers.
600
+
601
+ ## 17.1.50 (2019-06-04)
602
+
603
+ ### Maps
604
+
605
+ #### Bug Fixes
606
+
607
+ - `#I237041` - The issue in the sublayers are not re-rendered when zooming or panning is fixed.
608
+
609
+ ## 17.1.48 (2019-05-21)
610
+
611
+ ### Maps
612
+
613
+ #### New Features
614
+
615
+ - `#I233127` - The issue with recalculating the data labels when zooming the maps has been fixed.
616
+
617
+ ## 17.1.44 (2019-05-07)
618
+
619
+ ### Maps
620
+
621
+ #### Bug Fixes
622
+
623
+ - `#I234578` - The issue with rendering data label and tooltip when the layers type is set to 'Sublayer' has been fixed.
624
+ - `#I234578` - The issue with returning wrong highlight opacity to shapes in maps when highlighting the legend has been fixed.
625
+
626
+ ## 17.1.43 (2019-04-30)
627
+
628
+ ### Maps
629
+
630
+ #### Bug Fixes
631
+
632
+ - `#F143717` - The div containing the maps component overlaps the div with inputs above it issue has been fixed
633
+ - `#I233127` - The issue with the last interacted scaling is not maintained when refreshing the browser
634
+ ```
635
+ with the 'enablePersistence' API as true has been fixed.
636
+ ```
637
+
638
+ ## 17.1.42 (2019-04-23)
639
+
640
+ ### Maps
641
+
642
+ #### Bug Fixes
643
+
644
+ - `#I233129` – The issue in data label rendering, if you resize the map by setting the "intersectionAction" property to 'hide' has been fixed.
645
+ - `#I233127` - When selecting the new shape, the border for old shape is not removed issue has been fixed.
646
+ - `#I233127` – The issue of border width changing, when zooming the map has been fixed.
647
+
648
+ ## 17.1.41 (2019-04-16)
649
+
650
+ ### Maps
651
+
652
+ #### Bug Fixes
653
+
654
+ - `#F143717` - The issue "When setting high zoom factor to OpenStreetMap, sub layer is not placed properly" has been fixed".
655
+
656
+ ## 17.1.38 (2019-03-29)
657
+
658
+ ### Maps
659
+
660
+ #### Bug Fixes
661
+
662
+ - The ng-template support has been provided to render custom annotation.
663
+
package/README.md CHANGED
@@ -132,4 +132,4 @@ Check the changelog [here](https://github.com/syncfusion/ej2-angular-ui-componen
132
132
 
133
133
  See [LICENSE FILE](https://github.com/syncfusion/ej2-angular-ui-components/blob/master/components/maps/license?utm_source=npm&utm_campaign=angular-maps-npm) for more info.
134
134
 
135
- © Copyright 2023 Syncfusion, Inc. All Rights Reserved. The Syncfusion Essential Studio license and copyright applies to this distribution.
135
+ © Copyright 2024 Syncfusion, Inc. All Rights Reserved. The Syncfusion Essential Studio license and copyright applies to this distribution.