@syncfusion/ej2-maps 20.1.47 → 20.1.59
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 +17 -1
- 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 +128 -62
- package/dist/es6/ej2-maps.es2015.js.map +1 -1
- package/dist/es6/ej2-maps.es5.js +130 -64
- 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/maps.js +9 -1
- package/src/maps/model/export-image.js +7 -4
- package/src/maps/model/export-pdf.js +6 -4
- package/src/maps/user-interaction/zoom.js +111 -58
package/CHANGELOG.md
CHANGED
|
@@ -10,6 +10,22 @@
|
|
|
10
10
|
|
|
11
11
|
### Maps
|
|
12
12
|
|
|
13
|
+
#### Bug Fixes
|
|
14
|
+
|
|
15
|
+
- "Maps throws script error while resizing the window in React 18 sample" issue has been resolved.
|
|
16
|
+
|
|
17
|
+
## 20.1.48 (2022-04-12)
|
|
18
|
+
|
|
19
|
+
### Maps
|
|
20
|
+
|
|
21
|
+
#### Bug Fixes
|
|
22
|
+
|
|
23
|
+
- `#F174008` - `cancel` argument of the `zoom` event will work as expected when the value is set as **true**.
|
|
24
|
+
|
|
25
|
+
## 20.1.47 (2022-04-04)
|
|
26
|
+
|
|
27
|
+
### Maps
|
|
28
|
+
|
|
13
29
|
#### New Features
|
|
14
30
|
|
|
15
31
|
- Maps control now supports keyboard interaction for zooming, navigating, and other functions.
|
|
@@ -448,4 +464,4 @@ The Maps control is used to visualize the geographical data. It is used to repre
|
|
|
448
464
|
- **Data Labels** - Supports data label to provide additional information about the shapes.
|
|
449
465
|
- **Navigation Lines** - Lines can be rendered between various points in map.
|
|
450
466
|
- **Annotations** - Supports placing any HTML element on desired location in the map.
|
|
451
|
-
- **User interaction** - Supports interactive features like zooming, panning, tooltip, highlight, selection and interactive legend.
|
|
467
|
+
- **User interaction** - Supports interactive features like zooming, panning, tooltip, highlight, selection and interactive legend.
|