@syncfusion/ej2-maps 19.3.46 → 19.4.47

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.
Files changed (37) hide show
  1. package/.github/PULL_REQUEST_TEMPLATE/Bug.md +72 -0
  2. package/.github/PULL_REQUEST_TEMPLATE/Feature.md +49 -0
  3. package/CHANGELOG.md +34 -1
  4. package/README.md +1 -1
  5. package/dist/ej2-maps.umd.min.js +2 -2
  6. package/dist/ej2-maps.umd.min.js.map +1 -1
  7. package/dist/es6/ej2-maps.es2015.js +478 -257
  8. package/dist/es6/ej2-maps.es2015.js.map +1 -1
  9. package/dist/es6/ej2-maps.es5.js +474 -253
  10. package/dist/es6/ej2-maps.es5.js.map +1 -1
  11. package/dist/global/ej2-maps.min.js +2 -2
  12. package/dist/global/ej2-maps.min.js.map +1 -1
  13. package/dist/global/index.d.ts +1 -1
  14. package/package.json +12 -12
  15. package/src/maps/layers/bubble.d.ts +6 -0
  16. package/src/maps/layers/bubble.js +7 -1
  17. package/src/maps/layers/data-label.js +1 -0
  18. package/src/maps/layers/layer-panel.d.ts +2 -1
  19. package/src/maps/layers/layer-panel.js +86 -50
  20. package/src/maps/layers/legend.js +47 -18
  21. package/src/maps/layers/marker.js +2 -8
  22. package/src/maps/maps-model.d.ts +1 -1
  23. package/src/maps/maps.d.ts +5 -0
  24. package/src/maps/maps.js +42 -16
  25. package/src/maps/model/base-model.d.ts +7 -0
  26. package/src/maps/model/base.d.ts +6 -0
  27. package/src/maps/model/base.js +5 -2
  28. package/src/maps/model/interface.d.ts +1 -3
  29. package/src/maps/model/theme.js +62 -5
  30. package/src/maps/user-interaction/highlight.js +4 -4
  31. package/src/maps/user-interaction/selection.js +10 -9
  32. package/src/maps/user-interaction/tooltip.js +9 -3
  33. package/src/maps/user-interaction/zoom.d.ts +1 -0
  34. package/src/maps/user-interaction/zoom.js +76 -44
  35. package/src/maps/utils/enum.d.ts +3 -1
  36. package/src/maps/utils/helper.d.ts +4 -2
  37. package/src/maps/utils/helper.js +130 -98
@@ -0,0 +1,72 @@
1
+ # Bug description
2
+
3
+ Clearly and concisely describe the problem or feature (this cannot be empty).
4
+
5
+ ## Root cause
6
+
7
+ Briefly describe the root cause and analysis of the problem.
8
+ If there is an internal discussion on the forum, provide the link.
9
+
10
+ ## Reason for not identifying earlier
11
+
12
+ Find how it was missed in our earlier testing and development and by whom it was missed. This will help prevent similar mistakes in the future.
13
+
14
+ ### Reason
15
+
16
+ Provide reason for missing.
17
+
18
+ ### Action taken:
19
+
20
+ Provide the action plan taken to avoid this issue further. Also, mention if we addressed any other area in the same product based on this learning.
21
+
22
+ ### Related Area for missing test case:
23
+
24
+ Unit test case / E2E test case / Manual testing
25
+
26
+ ## Is it a breaking issue?
27
+
28
+ If it is a breaking issue, provide the commit detail which caused this break.
29
+
30
+ ## Solution description
31
+
32
+ Describe your code changes in detail for reviewers.
33
+
34
+ ### Cause:
35
+
36
+ Technical explanation for cause.
37
+
38
+ ### Fix:
39
+
40
+ Technical explanation for your fix.
41
+
42
+ ## Output screenshots
43
+
44
+ Post the output screenshots if an UI is affected or added due to this bug.
45
+
46
+ ### Before issue fix output image:
47
+
48
+ Provide issue image before fix.
49
+
50
+ ### After issue fix output image:
51
+
52
+ Provide issue fixed image with your fix.
53
+
54
+ ## Areas affected and ensured
55
+
56
+ List the areas affected by your code changes.
57
+
58
+ ## Additional checklist
59
+
60
+ - [ ] Did you run the automation against your fix? <b> Yes | No Your Explanation </b>
61
+
62
+ - [ ] Is there any API name change? <b> Yes | No Your Explanation </b>
63
+
64
+ - [ ] Is there any existing behavior change of other features due to this code change? <b> Yes | No Your Explanation </b>
65
+
66
+ - [ ] Did you record this case in the unit test or UI test? <b> Yes | No Your Explanation </b>
67
+
68
+ - [ ] Did you added issue fix comment? <b> Yes | No Your Explanation </b>
69
+
70
+ - [ ] Did you tested this issue fix for all browsers? <b> [ ] Chrome [ ] Firefox [ ] Edge [ ] Internet Explorer </b>
71
+
72
+ - [ ] Does it have any known issues? <b> Yes | No Your Explanation </b>
@@ -0,0 +1,49 @@
1
+ # Feature description
2
+
3
+ Clearly and concisely describe the problem/feature (this cannot be empty)
4
+
5
+ ## Analysis / Design
6
+
7
+ If there is an external design, link to it project documentation area
8
+ If there is an internal discussion on the Forum, provide the link.
9
+
10
+ ## Solution Description
11
+
12
+ Describe your code changes in detail for reviewers
13
+
14
+ ## Output screenshots
15
+
16
+ Post the output screenshots if an UI is affected or added due to this feature.
17
+
18
+ ## Areas affected and ensured
19
+
20
+ List out the areas are affected by your code changes.
21
+
22
+ ## Test cases
23
+
24
+ Provide the unit testing written file details to understand the use cases considered in this implementation.
25
+ If there is no TDD (if it’s not possible to follow), provide the UI automation script location and the Excel file that contains the use cases considered in this implementation.
26
+ Provide the test cases Excel file alone if the feature cannot be automated in any case.
27
+
28
+ ## Test bed sample location
29
+
30
+ Provide the test bed sample location where code reviewers can review the new feature’s behaviors. It can be from NPMCI, staging site, local server, etc.
31
+
32
+ ## Additional checklist
33
+
34
+ - [ ] Did you run the automation against your feature? <b> Yes | No Your Explanation </b>
35
+
36
+ - [ ] Is there any API name change? <b> Yes | No Your Explanation </b>
37
+
38
+ - [ ] Is there any existing behavior change of other features due to this code change? <b> Yes | No Your Explanation </b>
39
+
40
+ - [ ] Did you record this case in the unit test or UI test? <b> Yes | No Your Explanation </b>
41
+
42
+ - [ ] Did you add comment for your new code (Method / Class / API / Interface / Event)? <b> Yes | No Your Explanation </b>
43
+
44
+ - [ ] Did you configured third party config your feature? <b> Yes | No Your Explanation </b>
45
+
46
+ - [ ] Did you tested this feature with all browsers? <b> [ ] Chrome [ ] Firefox [ ] Edge [ ] Internet Explorer </b>
47
+
48
+
49
+
package/CHANGELOG.md CHANGED
@@ -12,6 +12,39 @@
12
12
 
13
13
  #### Bug Fixes
14
14
 
15
+ - `#SF-360297` - The position of the zoom toolbar will now be proper when the float CSS style is set as "right" in the parent element of the Maps control.
16
+
17
+ ## 19.4.42 (2022-01-11)
18
+
19
+ ### Maps
20
+
21
+ #### New Features
22
+
23
+ - When the `type` property of `legendSettings` property is set to "Markers", the `useMarkerShapes` property is exposed in the `legendSettings` to render the legend item shapes the same as the marker shapes.
24
+
25
+ #### Bug Fixes
26
+
27
+ - `#SF-360297` - The position of the marker template will now be proper when the float CSS style is set as "right" in the parent element of the Maps control.
28
+
29
+ ## 19.4.38 (2021-12-17)
30
+
31
+ ### Maps
32
+
33
+ #### New Features
34
+
35
+ - GeoJSON maps with "LineString" geometry type is now supported in the Maps control.
36
+ - When the `animationDuration` property is set, the zooming of map service providers such as OSM, Bing, and others is now smoother.
37
+
38
+ #### Bug Fixes
39
+
40
+ - `#F163990` - When the `imageUrlValuePath` property is set as the source image for the markers, image type markers will render properly.
41
+
42
+ ## 19.3.46 (2021-10-19)
43
+
44
+ ### Maps
45
+
46
+ #### Bug Fixes
47
+
15
48
  - Script error will not be thrown when a shape is selected without binding the data source to the Maps.
16
49
 
17
50
  ## 19.3.44 (2021-10-05)
@@ -370,4 +403,4 @@ The Maps control is used to visualize the geographical data. It is used to repre
370
403
  - **Data Labels** - Supports data label to provide additional information about the shapes.
371
404
  - **Navigation Lines** - Lines can be rendered between various points in map.
372
405
  - **Annotations** - Supports placing any HTML element on desired location in the map.
373
- - **User interaction** - Supports interactive features like zooming, panning, tooltip, highlight, selection and interactive legend.
406
+ - **User interaction** - Supports interactive features like zooming, panning, tooltip, highlight, selection and interactive legend.
package/README.md CHANGED
@@ -70,4 +70,4 @@ Check the license detail [here](https://github.com/syncfusion/ej2-javascript-ui-
70
70
 
71
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
- © Copyright 2019 Syncfusion, Inc. All Rights Reserved. The Syncfusion Essential Studio license and copyright applies to this distribution.
73
+ © Copyright 2022 Syncfusion, Inc. All Rights Reserved. The Syncfusion Essential Studio license and copyright applies to this distribution.