@syncfusion/ej2-maps 20.1.59 → 20.2.43
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 +17 -39
- 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 +657 -292
- package/dist/es6/ej2-maps.es2015.js.map +1 -1
- package/dist/es6/ej2-maps.es5.js +651 -286
- 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/bing-map.js +9 -3
- package/src/maps/layers/bubble.js +3 -7
- package/src/maps/layers/data-label.js +18 -19
- package/src/maps/layers/layer-panel.d.ts +13 -1
- package/src/maps/layers/layer-panel.js +199 -68
- package/src/maps/layers/legend.d.ts +4 -0
- package/src/maps/layers/legend.js +143 -55
- package/src/maps/layers/marker.js +4 -3
- package/src/maps/maps-model.d.ts +10 -2
- package/src/maps/maps.d.ts +22 -1
- package/src/maps/maps.js +106 -61
- package/src/maps/model/base-model.d.ts +5 -1
- package/src/maps/model/base.d.ts +5 -1
- package/src/maps/model/base.js +5 -5
- package/src/maps/model/constants.d.ts +6 -0
- package/src/maps/model/constants.js +6 -0
- package/src/maps/model/theme.js +3 -0
- package/src/maps/user-interaction/highlight.js +8 -5
- package/src/maps/user-interaction/selection.js +39 -14
- package/src/maps/user-interaction/tooltip.js +3 -3
- package/src/maps/user-interaction/zoom.d.ts +1 -1
- package/src/maps/user-interaction/zoom.js +88 -38
- package/src/maps/utils/helper.js +20 -7
package/CHANGELOG.md
CHANGED
|
@@ -10,82 +10,60 @@
|
|
|
10
10
|
|
|
11
11
|
### Maps
|
|
12
12
|
|
|
13
|
-
#### Bug Fixes
|
|
14
|
-
|
|
15
|
-
- "Maps throws script error while resizing the window in React 18 sample" issue has been resolved.
|
|
16
|
-
|
|
17
|
-
## 20.1.48 (2022-04-12)
|
|
18
|
-
|
|
19
|
-
### Maps
|
|
20
|
-
|
|
21
|
-
#### Bug Fixes
|
|
22
|
-
|
|
23
|
-
- `#F174008` - `cancel` argument of the `zoom` event will work as expected when the value is set as **true**.
|
|
24
|
-
|
|
25
|
-
## 20.1.47 (2022-04-04)
|
|
26
|
-
|
|
27
|
-
### Maps
|
|
28
|
-
|
|
29
13
|
#### New Features
|
|
30
14
|
|
|
31
|
-
-
|
|
15
|
+
- `#I390757` - As an alternative to the `click` event, the `onclick` event is exposed.
|
|
32
16
|
|
|
33
17
|
#### Bug Fixes
|
|
34
18
|
|
|
35
|
-
- `#
|
|
36
|
-
|
|
37
|
-
## 19.4.56 (2022-03-15)
|
|
38
|
-
|
|
39
|
-
### Maps
|
|
40
|
-
|
|
41
|
-
#### Bug Fixes
|
|
42
|
-
|
|
43
|
-
- `#F173348` - When the Maps control is printed, the position of the markers will now be proper.
|
|
44
|
-
- `#I369134` - When the `initialMarkerSelection` property is set, script errors are no longer thrown.
|
|
19
|
+
- `#I392653` - The `content` property in the event argument can now be used to customize the layer tooltip with format in the `tooltipRender` event.
|
|
20
|
+
- `#F174180` - Maps will function properly when adding and removing layers via the `zoom` event.
|
|
45
21
|
|
|
46
|
-
##
|
|
22
|
+
## 20.2.38 (2022-07-12)
|
|
47
23
|
|
|
48
24
|
### Maps
|
|
49
25
|
|
|
50
26
|
#### Bug Fixes
|
|
51
27
|
|
|
52
|
-
- `#
|
|
28
|
+
- `#I388045` - In mobile devices, the marker tooltip will now render properly when touched.
|
|
53
29
|
|
|
54
|
-
##
|
|
30
|
+
## 20.2.36 (2022-06-30)
|
|
55
31
|
|
|
56
32
|
### Maps
|
|
57
33
|
|
|
58
|
-
####
|
|
34
|
+
#### New Features
|
|
59
35
|
|
|
60
|
-
-
|
|
36
|
+
- GeoJSON data with geometry types like "MultiLineString," "MultiPoint," and "GeometryCollection" can now be displayed in Maps.
|
|
37
|
+
- `#F170451` - `urlTemplate` has been extended to accept tile server URLs from online map providers like ESRI, TomTom, and Mapbox.
|
|
38
|
+
- `#I326902` - Support for legend is provided when markers or sublayers are rendered in the online map providers.
|
|
61
39
|
|
|
62
|
-
##
|
|
40
|
+
## 20.1.59 (2022-06-07)
|
|
63
41
|
|
|
64
42
|
### Maps
|
|
65
43
|
|
|
66
44
|
#### Bug Fixes
|
|
67
45
|
|
|
68
|
-
-
|
|
46
|
+
- "Maps throws script error while resizing the window in React 18 sample" issue has been resolved.
|
|
69
47
|
|
|
70
|
-
##
|
|
48
|
+
## 20.1.48 (2022-04-12)
|
|
71
49
|
|
|
72
50
|
### Maps
|
|
73
51
|
|
|
74
52
|
#### Bug Fixes
|
|
75
53
|
|
|
76
|
-
- `#
|
|
54
|
+
- `#F174008` - `cancel` argument of the `zoom` event will work as expected when the value is set as **true**.
|
|
77
55
|
|
|
78
|
-
##
|
|
56
|
+
## 20.1.47 (2022-04-04)
|
|
79
57
|
|
|
80
58
|
### Maps
|
|
81
59
|
|
|
82
60
|
#### New Features
|
|
83
61
|
|
|
84
|
-
-
|
|
62
|
+
- Maps control now supports keyboard interaction for zooming, navigating, and other functions.
|
|
85
63
|
|
|
86
64
|
#### Bug Fixes
|
|
87
65
|
|
|
88
|
-
- `#
|
|
66
|
+
- `#F173348` - When the Maps control is printed, the position of the markers will now be proper.
|
|
89
67
|
|
|
90
68
|
## 19.4.38 (2021-12-17)
|
|
91
69
|
|