@syncfusion/ej2-maps 19.4.55 → 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 +29 -0
- 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 +253 -117
- package/dist/es6/ej2-maps.es2015.js.map +1 -1
- package/dist/es6/ej2-maps.es5.js +254 -118
- 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/data-label.js +1 -1
- package/src/maps/layers/legend.js +1 -1
- package/src/maps/layers/marker.js +4 -4
- package/src/maps/maps.js +20 -8
- package/src/maps/model/export-image.js +21 -12
- package/src/maps/model/export-pdf.js +16 -9
- package/src/maps/model/print.js +24 -2
- package/src/maps/model/theme.js +4 -4
- package/src/maps/user-interaction/annotation.js +1 -1
- package/src/maps/user-interaction/tooltip.d.ts +2 -1
- package/src/maps/user-interaction/tooltip.js +17 -9
- package/src/maps/user-interaction/zoom.js +121 -68
- package/src/maps/utils/enum.d.ts +5 -1
- package/src/maps/utils/helper.d.ts +9 -1
- package/src/maps/utils/helper.js +29 -4
package/CHANGELOG.md
CHANGED
|
@@ -12,6 +12,35 @@
|
|
|
12
12
|
|
|
13
13
|
#### Bug Fixes
|
|
14
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
|
+
|
|
21
|
+
#### New Features
|
|
22
|
+
|
|
23
|
+
- Maps control now supports keyboard interaction for zooming, navigating, and other functions.
|
|
24
|
+
|
|
25
|
+
#### Bug Fixes
|
|
26
|
+
|
|
27
|
+
- `#F173348` - When the Maps control is printed, the position of the markers will now be proper.
|
|
28
|
+
|
|
29
|
+
## 19.4.56 (2022-03-15)
|
|
30
|
+
|
|
31
|
+
### Maps
|
|
32
|
+
|
|
33
|
+
#### Bug Fixes
|
|
34
|
+
|
|
35
|
+
- `#F173348` - When the Maps control is printed, the position of the markers will now be proper.
|
|
36
|
+
- `#I369134` - When the `initialMarkerSelection` property is set, script errors are no longer thrown.
|
|
37
|
+
|
|
38
|
+
## 19.4.55 (2022-03-08)
|
|
39
|
+
|
|
40
|
+
### Maps
|
|
41
|
+
|
|
42
|
+
#### Bug Fixes
|
|
43
|
+
|
|
15
44
|
- `#I368368` - Drilldown of the Maps will now work properly in the mobile devices.
|
|
16
45
|
|
|
17
46
|
## 19.4.53 (2022-02-22)
|