@syncfusion/ej2-maps 20.3.49 → 20.3.56
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 +12 -1
- package/dist/ej2-maps.min.js +2 -2
- 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 +226 -170
- package/dist/es6/ej2-maps.es2015.js.map +1 -1
- package/dist/es6/ej2-maps.es5.js +226 -170
- 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 +13 -13
- package/src/maps/layers/data-label.js +8 -2
- package/src/maps/layers/layer-panel.js +21 -19
- package/src/maps/layers/legend.js +11 -6
- package/src/maps/layers/marker.js +11 -10
- package/src/maps/layers/navigation-selected-line.js +40 -42
- package/src/maps/maps.d.ts +2 -0
- package/src/maps/maps.js +41 -38
- package/src/maps/model/base.js +1 -1
- package/src/maps/user-interaction/annotation.js +2 -1
- package/src/maps/user-interaction/highlight.js +34 -11
- package/src/maps/user-interaction/tooltip.js +3 -3
- package/src/maps/user-interaction/zoom.js +33 -23
- package/src/maps/utils/helper.js +21 -15
package/CHANGELOG.md
CHANGED
|
@@ -12,6 +12,17 @@
|
|
|
12
12
|
|
|
13
13
|
#### Bug Fixes
|
|
14
14
|
|
|
15
|
+
- `#I413909` - When the highlight is removed from the interactive legend, the opacity of the corresponding shape is now properly maintained.
|
|
16
|
+
- `#I412101` - `shapeHighlight` event will now trigger properly.
|
|
17
|
+
- `#I411790` - `zoomByPosition` method will now work properly in the online map providers.
|
|
18
|
+
- `#I401870` - The fixes for the styles, related to the Content Security Policy (CSP), are included.
|
|
19
|
+
|
|
20
|
+
## 20.3.49 (2022-10-11)
|
|
21
|
+
|
|
22
|
+
### Maps
|
|
23
|
+
|
|
24
|
+
#### Bug Fixes
|
|
25
|
+
|
|
15
26
|
- `#I408673` - Data labels will now render properly when the values from `shapeDataPath` and `shapePropertyPath` are numbers.
|
|
16
27
|
|
|
17
28
|
## 20.3.47 (2022-09-29)
|
|
@@ -467,4 +478,4 @@ The Maps control is used to visualize the geographical data. It is used to repre
|
|
|
467
478
|
- **Data Labels** - Supports data label to provide additional information about the shapes.
|
|
468
479
|
- **Navigation Lines** - Lines can be rendered between various points in map.
|
|
469
480
|
- **Annotations** - Supports placing any HTML element on desired location in the map.
|
|
470
|
-
- **User interaction** - Supports interactive features like zooming, panning, tooltip, highlight, selection and interactive legend.
|
|
481
|
+
- **User interaction** - Supports interactive features like zooming, panning, tooltip, highlight, selection and interactive legend.
|