@syncfusion/ej2-maps 20.1.47 → 20.1.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.umd.min.js +2 -2
- package/dist/ej2-maps.umd.min.js.map +1 -1
- package/dist/es6/ej2-maps.es2015.js +127 -62
- package/dist/es6/ej2-maps.es2015.js.map +1 -1
- package/dist/es6/ej2-maps.es5.js +129 -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 +7 -7
- package/src/maps/maps.js +8 -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,14 @@
|
|
|
10
10
|
|
|
11
11
|
### Maps
|
|
12
12
|
|
|
13
|
+
#### Bug Fixes
|
|
14
|
+
|
|
15
|
+
- `#F174008` - `cancel` argument of the `zoom` event will work as expected when the value is set as **true**.
|
|
16
|
+
|
|
17
|
+
## 20.1.47 (2022-04-04)
|
|
18
|
+
|
|
19
|
+
### Maps
|
|
20
|
+
|
|
13
21
|
#### New Features
|
|
14
22
|
|
|
15
23
|
- Maps control now supports keyboard interaction for zooming, navigating, and other functions.
|
|
@@ -448,4 +456,4 @@ The Maps control is used to visualize the geographical data. It is used to repre
|
|
|
448
456
|
- **Data Labels** - Supports data label to provide additional information about the shapes.
|
|
449
457
|
- **Navigation Lines** - Lines can be rendered between various points in map.
|
|
450
458
|
- **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.
|
|
459
|
+
- **User interaction** - Supports interactive features like zooming, panning, tooltip, highlight, selection and interactive legend.
|