@syncfusion/ej2-maps 21.2.10 → 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 -42
- 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 +210 -51
- package/dist/es6/ej2-maps.es2015.js.map +1 -1
- package/dist/es6/ej2-maps.es5.js +209 -50
- 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 +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 +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,47 +10,6 @@
|
|
|
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
|
-
#### Bug Fixes
|
|
47
|
-
|
|
48
|
-
- `#I425592` - The marker rendered in the custom map can now be dragged and dropped in the desired location based on the requirement.
|
|
49
|
-
|
|
50
|
-
## 21.1.35 (2023-03-23)
|
|
51
|
-
|
|
52
|
-
### Maps
|
|
53
|
-
|
|
54
13
|
#### New Features
|
|
55
14
|
|
|
56
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`.
|
|
@@ -536,4 +495,4 @@ The Maps control is used to visualize the geographical data. It is used to repre
|
|
|
536
495
|
- **Data Labels** - Supports data label to provide additional information about the shapes.
|
|
537
496
|
- **Navigation Lines** - Lines can be rendered between various points in map.
|
|
538
497
|
- **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.
|
|
498
|
+
- **User interaction** - Supports interactive features like zooming, panning, tooltip, highlight, selection and interactive legend.
|