@syncfusion/ej2-maps 19.4.38 → 19.4.42
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/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 +90 -29
- package/dist/es6/ej2-maps.es2015.js.map +1 -1
- package/dist/es6/ej2-maps.es5.js +89 -28
- 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 +10 -10
- package/src/maps/layers/legend.js +22 -5
- package/src/maps/maps-model.d.ts +1 -1
- package/src/maps/maps.d.ts +4 -0
- package/src/maps/maps.js +40 -15
- 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/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
|
@@ -12,6 +12,18 @@
|
|
|
12
12
|
|
|
13
13
|
#### New Features
|
|
14
14
|
|
|
15
|
+
- 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.
|
|
16
|
+
|
|
17
|
+
#### Bug Fixes
|
|
18
|
+
|
|
19
|
+
- `#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.
|
|
20
|
+
|
|
21
|
+
## 19.4.38 (2021-12-17)
|
|
22
|
+
|
|
23
|
+
### Maps
|
|
24
|
+
|
|
25
|
+
#### New Features
|
|
26
|
+
|
|
15
27
|
- GeoJSON maps with "LineString" geometry type is now supported in the Maps control.
|
|
16
28
|
- When the `animationDuration` property is set, the zooming of map service providers such as OSM, Bing, and others is now smoother.
|
|
17
29
|
|
|
@@ -383,4 +395,4 @@ The Maps control is used to visualize the geographical data. It is used to repre
|
|
|
383
395
|
- **Data Labels** - Supports data label to provide additional information about the shapes.
|
|
384
396
|
- **Navigation Lines** - Lines can be rendered between various points in map.
|
|
385
397
|
- **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.
|
|
398
|
+
- **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.
|