@syncfusion/ej2-maps 21.2.5 → 22.1.34
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 +1 -33
- 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 +316 -133
- package/dist/es6/ej2-maps.es2015.js.map +1 -1
- package/dist/es6/ej2-maps.es5.js +316 -133
- 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 +7 -6
- 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 +16 -18
- 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 +108 -85
- 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,38 +10,6 @@
|
|
|
10
10
|
|
|
11
11
|
### Maps
|
|
12
12
|
|
|
13
|
-
#### Bug fixes
|
|
14
|
-
|
|
15
|
-
- `#I457059` - Marker template will now be properly clustered in the Maps component.
|
|
16
|
-
|
|
17
|
-
## 21.2.4 (2023-05-09)
|
|
18
|
-
|
|
19
|
-
### Maps
|
|
20
|
-
|
|
21
|
-
#### Bug fixes
|
|
22
|
-
|
|
23
|
-
- `#F181587` - The click event will now be properly triggered in the button element in the tooltip template.
|
|
24
|
-
|
|
25
|
-
## 21.1.41 (2023-04-18)
|
|
26
|
-
|
|
27
|
-
### Maps
|
|
28
|
-
|
|
29
|
-
#### Bug fixes
|
|
30
|
-
|
|
31
|
-
- `#I441762` - The position of the data labels will now be proper when the `geometryType` is set as **Normal**.
|
|
32
|
-
|
|
33
|
-
## 21.1.38 (2023-04-04)
|
|
34
|
-
|
|
35
|
-
### Maps
|
|
36
|
-
|
|
37
|
-
#### Bug Fixes
|
|
38
|
-
|
|
39
|
-
- `#I425592` - The marker rendered in the custom map can now be dragged and dropped in the desired location based on the requirement.
|
|
40
|
-
|
|
41
|
-
## 21.1.35 (2023-03-23)
|
|
42
|
-
|
|
43
|
-
### Maps
|
|
44
|
-
|
|
45
13
|
#### New Features
|
|
46
14
|
|
|
47
15
|
- `#I275734`, `#I293775` - The appearance of the buttons and tooltips in the zoom toolbar can now be customized using properties in the `buttonSettings` and `tooltipSettings` in the `toolbarSettings` property of `zoomSettings`.
|
|
@@ -527,4 +495,4 @@ The Maps control is used to visualize the geographical data. It is used to repre
|
|
|
527
495
|
- **Data Labels** - Supports data label to provide additional information about the shapes.
|
|
528
496
|
- **Navigation Lines** - Lines can be rendered between various points in map.
|
|
529
497
|
- **Annotations** - Supports placing any HTML element on desired location in the map.
|
|
530
|
-
- **User interaction** - Supports interactive features like zooming, panning, tooltip, highlight, selection and interactive legend.
|
|
498
|
+
- **User interaction** - Supports interactive features like zooming, panning, tooltip, highlight, selection and interactive legend.
|