@syncfusion/ej2-maps 21.2.10 → 22.1.39
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/.eslintrc.json +1 -0
- package/CHANGELOG.md +3 -36
- 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 +214 -52
- package/dist/es6/ej2-maps.es2015.js.map +1 -1
- package/dist/es6/ej2-maps.es5.js +213 -51
- 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 +2 -0
- package/src/maps/layers/layer-panel.js +6 -7
- package/src/maps/layers/legend.js +4 -0
- package/src/maps/maps-model.d.ts +1 -1
- package/src/maps/maps.d.ts +4 -0
- package/src/maps/maps.js +20 -19
- package/src/maps/model/base-model.d.ts +8 -4
- package/src/maps/model/base.d.ts +8 -4
- package/src/maps/model/base.js +4 -4
- package/src/maps/model/export-image.js +15 -2
- package/src/maps/model/export-pdf.js +11 -3
- package/src/maps/model/interface.d.ts +22 -4
- package/src/maps/model/print.js +14 -1
- package/src/maps/model/theme.js +126 -10
- package/src/maps/user-interaction/tooltip.js +6 -2
- package/src/maps/user-interaction/zoom.js +4 -3
- package/src/maps/utils/enum.d.ts +5 -1
- package/src/maps/utils/helper.d.ts +1 -1
- package/src/maps/utils/helper.js +5 -2
package/.eslintrc.json
CHANGED
|
@@ -37,6 +37,7 @@
|
|
|
37
37
|
"security/detect-possible-timing-attacks":"error",
|
|
38
38
|
"security/detect-pseudoRandomBytes":"error",
|
|
39
39
|
"security/detect-new-buffer":"error",
|
|
40
|
+
"security/detect-bidi-characters":"error",
|
|
40
41
|
"@typescript-eslint/no-inferrable-types": "off",
|
|
41
42
|
"@typescript-eslint/ban-types": ["warn", {
|
|
42
43
|
"types": {
|
package/CHANGELOG.md
CHANGED
|
@@ -10,44 +10,11 @@
|
|
|
10
10
|
|
|
11
11
|
### Maps
|
|
12
12
|
|
|
13
|
-
#### Bug fixes
|
|
14
|
-
|
|
15
|
-
- `#I467601` - When the zoom factor is set to its initial value, the position of the marker template will now be correct when the zoom-out button is clicked.
|
|
16
|
-
- `#I467777` - Tile images of the online maps will no longer be selected.
|
|
17
|
-
|
|
18
|
-
## 21.2.5 (2023-05-16)
|
|
19
|
-
|
|
20
|
-
### Maps
|
|
21
|
-
|
|
22
|
-
#### Bug fixes
|
|
23
|
-
|
|
24
|
-
- `#I457059` - Marker template will now be properly clustered in the Maps component.
|
|
25
|
-
|
|
26
|
-
## 21.2.4 (2023-05-09)
|
|
27
|
-
|
|
28
|
-
### Maps
|
|
29
|
-
|
|
30
|
-
#### Bug fixes
|
|
31
|
-
|
|
32
|
-
- `#F181587` - The click event will now be properly triggered in the button element in the tooltip template.
|
|
33
|
-
|
|
34
|
-
## 21.1.41 (2023-04-18)
|
|
35
|
-
|
|
36
|
-
### Maps
|
|
37
|
-
|
|
38
|
-
#### Bug fixes
|
|
39
|
-
|
|
40
|
-
- `#I441762` - The position of the data labels will now be proper when the `geometryType` is set as **Normal**.
|
|
41
|
-
|
|
42
|
-
## 21.1.38 (2023-04-04)
|
|
43
|
-
|
|
44
|
-
### Maps
|
|
45
|
-
|
|
46
13
|
#### Bug Fixes
|
|
47
14
|
|
|
48
|
-
- `#
|
|
15
|
+
- `#I482286` - When the page containing the Maps, which is placed in the dashboard, is switched dynamically, script errors are no longer thrown.
|
|
49
16
|
|
|
50
|
-
##
|
|
17
|
+
## 22.1.34 (2023-06-21)
|
|
51
18
|
|
|
52
19
|
### Maps
|
|
53
20
|
|
|
@@ -536,4 +503,4 @@ The Maps control is used to visualize the geographical data. It is used to repre
|
|
|
536
503
|
- **Data Labels** - Supports data label to provide additional information about the shapes.
|
|
537
504
|
- **Navigation Lines** - Lines can be rendered between various points in map.
|
|
538
505
|
- **Annotations** - Supports placing any HTML element on desired location in the map.
|
|
539
|
-
- **User interaction** - Supports interactive features like zooming, panning, tooltip, highlight, selection and interactive legend.
|
|
506
|
+
- **User interaction** - Supports interactive features like zooming, panning, tooltip, highlight, selection and interactive legend.
|