@syncfusion/ej2-maps 19.2.60 → 19.3.53
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 -1
- package/CHANGELOG.md +10 -4
- package/README.md +3 -3
- 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 +182 -393
- package/dist/es6/ej2-maps.es2015.js.map +1 -1
- package/dist/es6/ej2-maps.es5.js +182 -394
- 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/bubble.js +3 -24
- package/src/maps/layers/data-label.js +5 -17
- package/src/maps/layers/layer-panel.js +0 -22
- package/src/maps/layers/legend.js +1 -1
- package/src/maps/layers/marker.js +0 -16
- package/src/maps/maps-model.d.ts +1 -28
- package/src/maps/maps.d.ts +1 -38
- package/src/maps/maps.js +39 -86
- package/src/maps/model/base-model.d.ts +0 -5
- package/src/maps/model/base.d.ts +0 -5
- package/src/maps/model/export-pdf.js +1 -1
- package/src/maps/model/theme.js +54 -1
- package/src/maps/user-interaction/annotation.js +3 -7
- package/src/maps/user-interaction/highlight.js +0 -13
- package/src/maps/user-interaction/selection.js +0 -13
- package/src/maps/user-interaction/tooltip.js +52 -122
- package/src/maps/user-interaction/zoom.js +19 -68
- package/src/maps/utils/enum.d.ts +5 -1
- package/src/maps/utils/helper.d.ts +1 -1
- package/src/maps/utils/helper.js +6 -6
package/.eslintrc.json
CHANGED
package/CHANGELOG.md
CHANGED
|
@@ -12,9 +12,15 @@
|
|
|
12
12
|
|
|
13
13
|
#### Bug Fixes
|
|
14
14
|
|
|
15
|
-
-
|
|
16
|
-
|
|
17
|
-
|
|
15
|
+
- Script error will not be thrown when a shape is selected without binding the data source to the Maps.
|
|
16
|
+
|
|
17
|
+
## 19.3.44 (2021-10-05)
|
|
18
|
+
|
|
19
|
+
### Maps
|
|
20
|
+
|
|
21
|
+
#### Bug Fixes
|
|
22
|
+
|
|
23
|
+
- `#I342201` - When the `projectionType` is set to `Equirectangular`, data labels will now render correctly.
|
|
18
24
|
|
|
19
25
|
## 19.1.59 (2021-05-04)
|
|
20
26
|
|
|
@@ -290,7 +296,7 @@
|
|
|
290
296
|
|
|
291
297
|
#### Bug Fixes
|
|
292
298
|
|
|
293
|
-
- Now map is rendering properly in universal applications
|
|
299
|
+
- Now map is rendering properly in universal applications
|
|
294
300
|
- Now panning works properly without freezing
|
|
295
301
|
|
|
296
302
|
## 16.3.22 (2018-09-25)
|
package/README.md
CHANGED
|
@@ -8,7 +8,7 @@ The Maps component is used to visualize the geographical data and represent the
|
|
|
8
8
|
|
|
9
9
|
## Setup
|
|
10
10
|
|
|
11
|
-
To install Maps and its dependent packages, use the following command
|
|
11
|
+
To install Maps and its dependent packages, use the following command.
|
|
12
12
|
|
|
13
13
|
```sh
|
|
14
14
|
npm install @syncfusion/ej2-maps
|
|
@@ -60,7 +60,7 @@ Product support is available for through following mediums.
|
|
|
60
60
|
|
|
61
61
|
* Creating incident in Syncfusion [Direct-trac](https://www.syncfusion.com/support/directtrac/incidents?utm_source=npm&utm_campaign=maps) support system or [Community forum](https://www.syncfusion.com/forums/essential-js2?utm_source=npm&utm_campaign=maps).
|
|
62
62
|
* New [GitHub issues](https://github.com/syncfusion/ej2-javascript-ui-controls/issues).
|
|
63
|
-
* Ask your query in Stack Overflow with tag `syncfusion`, `ej2
|
|
63
|
+
* Ask your query in Stack Overflow with tag `syncfusion`, `ej2`
|
|
64
64
|
|
|
65
65
|
## License
|
|
66
66
|
|
|
@@ -68,6 +68,6 @@ Check the license detail [here](https://github.com/syncfusion/ej2-javascript-ui-
|
|
|
68
68
|
|
|
69
69
|
## Changelog
|
|
70
70
|
|
|
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)
|
|
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
73
|
© Copyright 2019 Syncfusion, Inc. All Rights Reserved. The Syncfusion Essential Studio license and copyright applies to this distribution.
|