@syncfusion/ej2-maps 19.4.38 → 19.4.52
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 -1
- package/README.md +1 -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 +279 -67
- package/dist/es6/ej2-maps.es2015.js.map +1 -1
- package/dist/es6/ej2-maps.es5.js +278 -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/layer-panel.js +3 -2
- package/src/maps/layers/legend.d.ts +41 -2
- package/src/maps/layers/legend.js +65 -16
- package/src/maps/maps-model.d.ts +1 -1
- package/src/maps/maps.d.ts +8 -0
- package/src/maps/maps.js +141 -18
- package/src/maps/model/base-model.d.ts +7 -0
- package/src/maps/model/base.d.ts +6 -0
- package/src/maps/model/base.js +3 -0
- package/src/maps/model/interface.d.ts +1 -3
- package/src/maps/user-interaction/highlight.d.ts +9 -1
- package/src/maps/user-interaction/highlight.js +18 -11
- package/src/maps/user-interaction/selection.d.ts +9 -1
- package/src/maps/user-interaction/selection.js +17 -10
- package/src/maps/user-interaction/zoom.d.ts +4 -1
- package/src/maps/user-interaction/zoom.js +9 -3
- package/src/maps/utils/enum.d.ts +3 -1
- package/src/maps/utils/helper.d.ts +2 -2
- package/src/maps/utils/helper.js +26 -10
package/CHANGELOG.md
CHANGED
|
@@ -10,6 +10,34 @@
|
|
|
10
10
|
|
|
11
11
|
### Maps
|
|
12
12
|
|
|
13
|
+
#### Bug Fixes
|
|
14
|
+
|
|
15
|
+
- `#I363761` - Script error will no longer be thrown when the display CSS property for the div element of the Maps control is set to "none".
|
|
16
|
+
|
|
17
|
+
## 19.4.47 (2022-01-25)
|
|
18
|
+
|
|
19
|
+
### Maps
|
|
20
|
+
|
|
21
|
+
#### Bug Fixes
|
|
22
|
+
|
|
23
|
+
- `#SF-360297` - The position of the zoom toolbar will now be proper when the float CSS style is set as "right" in the parent element of the Maps control.
|
|
24
|
+
|
|
25
|
+
## 19.4.42 (2022-01-11)
|
|
26
|
+
|
|
27
|
+
### Maps
|
|
28
|
+
|
|
29
|
+
#### New Features
|
|
30
|
+
|
|
31
|
+
- When the `type` property of `legendSettings` property is set to "Markers", the `useMarkerShapes` property is exposed in the `legendSettings` to render the legend item shapes the same as the marker shapes.
|
|
32
|
+
|
|
33
|
+
#### Bug Fixes
|
|
34
|
+
|
|
35
|
+
- `#SF-360297` - The position of the marker template will now be proper when the float CSS style is set as "right" in the parent element of the Maps control.
|
|
36
|
+
|
|
37
|
+
## 19.4.38 (2021-12-17)
|
|
38
|
+
|
|
39
|
+
### Maps
|
|
40
|
+
|
|
13
41
|
#### New Features
|
|
14
42
|
|
|
15
43
|
- GeoJSON maps with "LineString" geometry type is now supported in the Maps control.
|
|
@@ -383,4 +411,4 @@ The Maps control is used to visualize the geographical data. It is used to repre
|
|
|
383
411
|
- **Data Labels** - Supports data label to provide additional information about the shapes.
|
|
384
412
|
- **Navigation Lines** - Lines can be rendered between various points in map.
|
|
385
413
|
- **Annotations** - Supports placing any HTML element on desired location in the map.
|
|
386
|
-
- **User interaction** - Supports interactive features like zooming, panning, tooltip, highlight, selection and interactive legend.
|
|
414
|
+
- **User interaction** - Supports interactive features like zooming, panning, tooltip, highlight, selection and interactive legend.
|
package/README.md
CHANGED
|
@@ -70,4 +70,4 @@ Check the license detail [here](https://github.com/syncfusion/ej2-javascript-ui-
|
|
|
70
70
|
|
|
71
71
|
Check the changelog [here](https://github.com/syncfusion/ej2-javascript-ui-controls/blob/master/controls/maps/CHANGELOG.md?utm_source=npm&utm_campaign=maps)
|
|
72
72
|
|
|
73
|
-
© Copyright
|
|
73
|
+
© Copyright 2022 Syncfusion, Inc. All Rights Reserved. The Syncfusion Essential Studio license and copyright applies to this distribution.
|