@syncfusion/ej2-maps 25.2.3 → 25.2.5

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 (52) hide show
  1. package/CHANGELOG.md +21 -0
  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 +322 -202
  6. package/dist/es6/ej2-maps.es2015.js.map +1 -1
  7. package/dist/es6/ej2-maps.es5.js +331 -205
  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 +8 -8
  13. package/src/maps/layers/bubble.d.ts +3 -4
  14. package/src/maps/layers/bubble.js +3 -4
  15. package/src/maps/layers/color-mapping.d.ts +2 -2
  16. package/src/maps/layers/color-mapping.js +2 -2
  17. package/src/maps/layers/data-label.d.ts +1 -1
  18. package/src/maps/layers/data-label.js +1 -1
  19. package/src/maps/layers/layer-panel.d.ts +7 -7
  20. package/src/maps/layers/layer-panel.js +11 -20
  21. package/src/maps/layers/legend.d.ts +9 -0
  22. package/src/maps/layers/legend.js +96 -19
  23. package/src/maps/layers/marker.d.ts +8 -8
  24. package/src/maps/layers/marker.js +8 -8
  25. package/src/maps/layers/navigation-selected-line.d.ts +1 -1
  26. package/src/maps/layers/navigation-selected-line.js +1 -1
  27. package/src/maps/layers/polygon.d.ts +1 -1
  28. package/src/maps/layers/polygon.js +1 -1
  29. package/src/maps/maps.d.ts +24 -26
  30. package/src/maps/maps.js +32 -30
  31. package/src/maps/model/base-model.d.ts +18 -2
  32. package/src/maps/model/base.d.ts +16 -2
  33. package/src/maps/model/base.js +7 -1
  34. package/src/maps/model/constants.d.ts +0 -4
  35. package/src/maps/model/constants.js +0 -4
  36. package/src/maps/model/interface.d.ts +2 -1
  37. package/src/maps/model/print.d.ts +3 -3
  38. package/src/maps/model/print.js +3 -3
  39. package/src/maps/model/theme.d.ts +1 -1
  40. package/src/maps/model/theme.js +1 -1
  41. package/src/maps/user-interaction/annotation.d.ts +1 -2
  42. package/src/maps/user-interaction/annotation.js +1 -2
  43. package/src/maps/user-interaction/highlight.d.ts +4 -4
  44. package/src/maps/user-interaction/highlight.js +4 -4
  45. package/src/maps/user-interaction/selection.d.ts +5 -5
  46. package/src/maps/user-interaction/selection.js +5 -5
  47. package/src/maps/user-interaction/tooltip.d.ts +6 -6
  48. package/src/maps/user-interaction/tooltip.js +18 -11
  49. package/src/maps/user-interaction/zoom.d.ts +6 -4
  50. package/src/maps/user-interaction/zoom.js +23 -10
  51. package/src/maps/utils/helper.d.ts +87 -72
  52. package/src/maps/utils/helper.js +114 -78
package/CHANGELOG.md CHANGED
@@ -10,8 +10,29 @@
10
10
 
11
11
  ### Maps
12
12
 
13
+ #### Bug fixes
14
+
15
+ - `#I585591` - When setting different sizes for the Maps, the `latitude` and `longitude` values from the `tooltipRender` event will now be proper.
16
+ - `#I584215` - Markers will now be rendered properly when the left mouse click is on hold and mouse wheel action is performed.
17
+ - `#I584211` - Markers will now be in proper position when the panning action is performed in the Maps when the marker animation is in progress.
18
+
19
+ ## 25.2.4 (2024-05-14)
20
+
21
+ ### Maps
22
+
23
+ #### Bug Fixes
24
+
25
+ - `#I583752` - Legends for the markers will now maintain the toggled state when zoomed in or out.
26
+ - `#I584887` - Exceptions will no longer be thrown when toggling the legend by enabling the `removeDuplicateLegend` property in the Maps.
27
+ - `#I584215` - Panning will now work properly when the Maps is zoomed to the maximum level using keyboard interaction.
28
+
29
+ ## 25.2.3 (2024-05-08)
30
+
31
+ ### Maps
32
+
13
33
  #### Bug Fixes
14
34
 
35
+ - `#I561947` - The duration of the tooltip in the Maps on the mobile device can be changed using the `duration` property in `tooltipSettings`. When the value is set to **0**, the tooltip will not be removed.
15
36
  - `#I580579` - Script errors will no longer be thrown when the markers in the Maps are disabled.
16
37
 
17
38
  ## 25.1.41 (2024-04-23)