@syncfusion/ej2-maps 24.2.9 → 25.1.35

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 (38) hide show
  1. package/CHANGELOG.md +12 -2
  2. package/dist/ej2-maps.min.js +2 -2
  3. package/dist/ej2-maps.umd.min.js +2 -2
  4. package/dist/ej2-maps.umd.min.js.map +1 -1
  5. package/dist/es6/ej2-maps.es2015.js +646 -331
  6. package/dist/es6/ej2-maps.es2015.js.map +1 -1
  7. package/dist/es6/ej2-maps.es5.js +660 -346
  8. package/dist/es6/ej2-maps.es5.js.map +1 -1
  9. package/dist/global/ej2-maps.min.js +2 -2
  10. package/dist/global/ej2-maps.min.js.map +1 -1
  11. package/dist/global/index.d.ts +1 -1
  12. package/package.json +13 -13
  13. package/src/maps/layers/bubble.js +2 -3
  14. package/src/maps/layers/color-mapping.d.ts +0 -1
  15. package/src/maps/layers/color-mapping.js +0 -1
  16. package/src/maps/layers/data-label.js +19 -17
  17. package/src/maps/layers/layer-panel.js +13 -7
  18. package/src/maps/layers/legend.js +11 -3
  19. package/src/maps/layers/marker.d.ts +4 -0
  20. package/src/maps/layers/marker.js +16 -13
  21. package/src/maps/layers/polygon.d.ts +0 -1
  22. package/src/maps/layers/polygon.js +1 -4
  23. package/src/maps/maps-model.d.ts +14 -0
  24. package/src/maps/maps.d.ts +14 -2
  25. package/src/maps/maps.js +118 -46
  26. package/src/maps/model/base-model.d.ts +51 -0
  27. package/src/maps/model/base.d.ts +43 -1
  28. package/src/maps/model/base.js +32 -0
  29. package/src/maps/model/constants.d.ts +12 -0
  30. package/src/maps/model/constants.js +12 -0
  31. package/src/maps/model/interface.d.ts +8 -0
  32. package/src/maps/user-interaction/tooltip.js +151 -110
  33. package/src/maps/user-interaction/zoom.d.ts +3 -5
  34. package/src/maps/user-interaction/zoom.js +198 -106
  35. package/src/maps/utils/helper.d.ts +7 -1
  36. package/src/maps/utils/helper.js +89 -37
  37. package/.github/PULL_REQUEST_TEMPLATE/Bug.md +0 -72
  38. package/.github/PULL_REQUEST_TEMPLATE/Feature.md +0 -49
package/CHANGELOG.md CHANGED
@@ -10,6 +10,16 @@
10
10
 
11
11
  ### Maps
12
12
 
13
+ #### New Features
14
+
15
+ - `#I544447` - Maps will display data labels with improved performance when multiple layers are set.
16
+ - `#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.
17
+ - The tooltip and its template can now be displayed over the polygon shapes in the Maps. Tooltip templates can include custom items such as images, text, and HTML elements.
18
+
19
+ ## 24.2.4 (2024-02-06)
20
+
21
+ ### Maps
22
+
13
23
  #### Bug Fixes
14
24
 
15
25
  - `#I545401`, `#I547542` - Markers will be rendered properly in the correct location when they are added dynamically by clicking over a custom shape map.
@@ -74,7 +84,7 @@
74
84
 
75
85
  #### New Features
76
86
 
77
- - An animated transition will now occur on the initial rendering of data labels and not during any dynamic updates.
87
+ - An animation transition will now occur when the data labels are first rendered.
78
88
 
79
89
  #### Bug Fixes
80
90
 
@@ -446,7 +456,7 @@
446
456
  #### Bug Fixes
447
457
 
448
458
  - `#I240833` - Some labels disappear when you change "colorMapping" and refresh the map issue has been fixed.
449
- - `I240804` - The issue with dynamically updating the zoom factor has been fixed
459
+ - `I240804` - The issue with dynamically updating the zoom factor has been fixed.
450
460
  - `I241873` - The issue with zooming the map component with a single click has been fixed
451
461
 
452
462
  ## 17.2.35 (2019-07-17)