@syncfusion/ej2-maps 19.4.56 → 20.1.47
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 +13 -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 +79 -46
- package/dist/es6/ej2-maps.es2015.js.map +1 -1
- package/dist/es6/ej2-maps.es5.js +79 -46
- 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/model/export-image.js +5 -6
- package/src/maps/model/export-pdf.js +6 -8
- package/src/maps/model/print.js +22 -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 +10 -10
- package/src/maps/utils/enum.d.ts +5 -1
- package/src/maps/utils/helper.d.ts +1 -1
- package/src/maps/utils/helper.js +9 -2
package/CHANGELOG.md
CHANGED
|
@@ -10,6 +10,18 @@
|
|
|
10
10
|
|
|
11
11
|
### Maps
|
|
12
12
|
|
|
13
|
+
#### New Features
|
|
14
|
+
|
|
15
|
+
- Maps control now supports keyboard interaction for zooming, navigating, and other functions.
|
|
16
|
+
|
|
17
|
+
#### Bug Fixes
|
|
18
|
+
|
|
19
|
+
- `#F173348` - When the Maps control is printed, the position of the markers will now be proper.
|
|
20
|
+
|
|
21
|
+
## 19.4.56 (2022-03-15)
|
|
22
|
+
|
|
23
|
+
### Maps
|
|
24
|
+
|
|
13
25
|
#### Bug Fixes
|
|
14
26
|
|
|
15
27
|
- `#F173348` - When the Maps control is printed, the position of the markers will now be proper.
|
|
@@ -436,4 +448,4 @@ The Maps control is used to visualize the geographical data. It is used to repre
|
|
|
436
448
|
- **Data Labels** - Supports data label to provide additional information about the shapes.
|
|
437
449
|
- **Navigation Lines** - Lines can be rendered between various points in map.
|
|
438
450
|
- **Annotations** - Supports placing any HTML element on desired location in the map.
|
|
439
|
-
- **User interaction** - Supports interactive features like zooming, panning, tooltip, highlight, selection and interactive legend.
|
|
451
|
+
- **User interaction** - Supports interactive features like zooming, panning, tooltip, highlight, selection and interactive legend.
|