@syncfusion/ej2-maps 19.4.53 → 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 +30 -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 +144 -67
- package/dist/es6/ej2-maps.es2015.js.map +1 -1
- package/dist/es6/ej2-maps.es5.js +143 -66
- 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.d.ts +1 -0
- package/src/maps/maps.js +28 -17
- package/src/maps/model/export-image.js +15 -9
- package/src/maps/model/export-pdf.js +11 -6
- 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 +10 -10
- 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
|
@@ -10,6 +10,35 @@
|
|
|
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
|
+
|
|
25
|
+
#### Bug Fixes
|
|
26
|
+
|
|
27
|
+
- `#F173348` - When the Maps control is printed, the position of the markers will now be proper.
|
|
28
|
+
- `#I369134` - When the `initialMarkerSelection` property is set, script errors are no longer thrown.
|
|
29
|
+
|
|
30
|
+
## 19.4.55 (2022-03-08)
|
|
31
|
+
|
|
32
|
+
### Maps
|
|
33
|
+
|
|
34
|
+
#### Bug Fixes
|
|
35
|
+
|
|
36
|
+
- `#I368368` - Drilldown of the Maps will now work properly in the mobile devices.
|
|
37
|
+
|
|
38
|
+
## 19.4.53 (2022-02-22)
|
|
39
|
+
|
|
40
|
+
### Maps
|
|
41
|
+
|
|
13
42
|
#### Bug Fixes
|
|
14
43
|
|
|
15
44
|
- `#I367115` - `markerClick` event will be triggered properly in the Maps control.
|
|
@@ -419,4 +448,4 @@ The Maps control is used to visualize the geographical data. It is used to repre
|
|
|
419
448
|
- **Data Labels** - Supports data label to provide additional information about the shapes.
|
|
420
449
|
- **Navigation Lines** - Lines can be rendered between various points in map.
|
|
421
450
|
- **Annotations** - Supports placing any HTML element on desired location in the map.
|
|
422
|
-
- **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.
|