@syncfusion/ej2-maps 20.4.42 → 20.4.48
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/CHANGELOG.md +9 -1
- package/dist/ej2-maps.min.js +2 -2
- package/dist/ej2-maps.umd.min.js +2 -2
- package/dist/ej2-maps.umd.min.js.map +1 -1
- package/dist/es6/ej2-maps.es2015.js +25 -19
- package/dist/es6/ej2-maps.es2015.js.map +1 -1
- package/dist/es6/ej2-maps.es5.js +25 -19
- package/dist/es6/ej2-maps.es5.js.map +1 -1
- package/dist/global/ej2-maps.min.js +2 -2
- package/dist/global/ej2-maps.min.js.map +1 -1
- package/dist/global/index.d.ts +1 -1
- package/package.json +12 -12
- package/src/maps/layers/legend.js +3 -3
- package/src/maps/maps.d.ts +1 -0
- package/src/maps/maps.js +6 -2
- package/src/maps/user-interaction/tooltip.js +16 -14
package/CHANGELOG.md
CHANGED
|
@@ -8,6 +8,14 @@
|
|
|
8
8
|
|
|
9
9
|
## [Unreleased]
|
|
10
10
|
|
|
11
|
+
## 20.4.44 (2023-01-18)
|
|
12
|
+
|
|
13
|
+
### Maps
|
|
14
|
+
|
|
15
|
+
#### Bug Fixes
|
|
16
|
+
|
|
17
|
+
- `#I426534` - When the destroy method is invoked, the resize event is now properly removed from the Maps control.
|
|
18
|
+
|
|
11
19
|
## 20.4.38 (2022-12-21)
|
|
12
20
|
|
|
13
21
|
### Maps
|
|
@@ -488,4 +496,4 @@ The Maps control is used to visualize the geographical data. It is used to repre
|
|
|
488
496
|
- **Data Labels** - Supports data label to provide additional information about the shapes.
|
|
489
497
|
- **Navigation Lines** - Lines can be rendered between various points in map.
|
|
490
498
|
- **Annotations** - Supports placing any HTML element on desired location in the map.
|
|
491
|
-
- **User interaction** - Supports interactive features like zooming, panning, tooltip, highlight, selection and interactive legend.
|
|
499
|
+
- **User interaction** - Supports interactive features like zooming, panning, tooltip, highlight, selection and interactive legend.
|