@syncfusion/ej2-angular-maps 27.2.2-ngcc → 28.1.33-ngcc

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/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "_from": "@syncfusion/ej2-angular-maps@*",
3
- "_id": "@syncfusion/ej2-angular-maps@27.1.56",
3
+ "_id": "@syncfusion/ej2-angular-maps@16.42.7",
4
4
  "_inBundle": false,
5
- "_integrity": "sha512-3a+o0co5RRplTDTaTzSL4JeQoED08TtDvdGv34UeeBZbHLXoyF5L+tDRL4JBIIqTrM2F4A5fBiUJiI1yMqeuEg==",
5
+ "_integrity": "sha512-2JjcR9RDD+gJjZDIPH188YoTSkjSbJ4Cz2cX8lJQYYkCVxnypzhV66NY8vl9SFOUK5B7Y7BsLxug6gQzERbvSg==",
6
6
  "_location": "/@syncfusion/ej2-angular-maps",
7
7
  "_phantomChildren": {},
8
8
  "_requested": {
@@ -19,10 +19,10 @@
19
19
  "_requiredBy": [
20
20
  "/"
21
21
  ],
22
- "_resolved": "https://nexus.syncfusioninternal.com/repository/ej2-hotfix-new/@syncfusion/ej2-angular-maps/-/ej2-angular-maps-27.1.56.tgz",
23
- "_shasum": "a9984e22496520bc8c509cbd19d5068b0d1781ef",
22
+ "_resolved": "https://nexus.syncfusioninternal.com/repository/ej2-release/@syncfusion/ej2-angular-maps/-/ej2-angular-maps-16.42.7.tgz",
23
+ "_shasum": "f97e35103207d3be73df1efd6580a5ae04e5e81e",
24
24
  "_spec": "@syncfusion/ej2-angular-maps@*",
25
- "_where": "/jenkins/workspace/elease-automation_release_27.1.1/packages/included",
25
+ "_where": "/jenkins/workspace/elease-automation_release_28.1.1/packages/included",
26
26
  "author": {
27
27
  "name": "Syncfusion Inc."
28
28
  },
@@ -31,9 +31,9 @@
31
31
  },
32
32
  "bundleDependencies": false,
33
33
  "dependencies": {
34
- "@syncfusion/ej2-angular-base": "~27.2.2",
35
- "@syncfusion/ej2-base": "~27.2.2",
36
- "@syncfusion/ej2-maps": "27.2.2"
34
+ "@syncfusion/ej2-angular-base": "~28.1.33",
35
+ "@syncfusion/ej2-base": "~28.1.33",
36
+ "@syncfusion/ej2-maps": "28.1.33"
37
37
  },
38
38
  "deprecated": false,
39
39
  "description": "The Maps component is used to visualize the geographical data and represent the statistical data of a particular geographical area on earth with user interactivity, and provides various customizing options for Angular",
@@ -57,5 +57,5 @@
57
57
  "schematics": "./schematics/collection.json",
58
58
  "sideEffects": false,
59
59
  "typings": "ej2-angular-maps.d.ts",
60
- "version": "27.2.2-ngcc"
60
+ "version": "28.1.33-ngcc"
61
61
  }
@@ -1,4 +1,4 @@
1
1
  export declare const pkgName = "@syncfusion/ej2-angular-maps";
2
- export declare const pkgVer = "^27.1.56";
2
+ export declare const pkgVer = "^16.42.7";
3
3
  export declare const moduleName = "MapsModule";
4
- export declare const themeVer = "~27.1.56";
4
+ export declare const themeVer = "~16.42.7";
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.pkgName = '@syncfusion/ej2-angular-maps';
4
- exports.pkgVer = '^27.2.2';
4
+ exports.pkgVer = '^28.1.33';
5
5
  exports.moduleName = 'MapsModule';
6
- exports.themeVer = '~27.2.2';
6
+ exports.themeVer = '~28.1.33';
@@ -1,4 +1,4 @@
1
1
  export const pkgName = '@syncfusion/ej2-angular-maps';
2
- export const pkgVer = '^27.2.2';
2
+ export const pkgVer = '^28.1.33';
3
3
  export const moduleName = 'MapsModule';
4
- export const themeVer = '~27.2.2';
4
+ export const themeVer = '~28.1.33';
@@ -43,6 +43,7 @@ export declare class MapsComponent extends Maps implements IComponentBase {
43
43
  markerDragStart: any;
44
44
  markerMouseMove: any;
45
45
  markerRendering: any;
46
+ mouseMove: any;
46
47
  onclick: any;
47
48
  pan: any;
48
49
  panComplete: any;
@@ -30,6 +30,11 @@ export declare class MarkerDirective extends ComplexBase<MarkerDirective> {
30
30
  * Gets or sets the options for customizing the style properties of the border of the marker in maps.
31
31
  */
32
32
  border: any;
33
+ /**
34
+ * Gets or sets the options for customizing the clustering of markers on the map.
35
+ * This property is used to cluster markers based on the current marker settings, and it is applied only when the `allowClustering` property is enabled.
36
+ */
37
+ clusterSettings: any;
33
38
  /**
34
39
  * Gets or sets the field name from the marker data source based on which the color is applied for the marker.
35
40
  * @default null
@@ -64,6 +69,11 @@ export declare class MarkerDirective extends ComplexBase<MarkerDirective> {
64
69
  * @default 10
65
70
  */
66
71
  height: any;
72
+ /**
73
+ * Gets or sets the field name from the data source that determines the marker height.
74
+ * @default null
75
+ */
76
+ heightValuePath: any;
67
77
  /**
68
78
  * Gets or sets the options to customize the marker when the mouse hovers over the markers in maps.
69
79
  */
@@ -138,6 +148,11 @@ export declare class MarkerDirective extends ComplexBase<MarkerDirective> {
138
148
  * @default 10
139
149
  */
140
150
  width: any;
151
+ /**
152
+ * Gets or sets the field name from the data source that determines the marker width.
153
+ * @default null
154
+ */
155
+ widthValuePath: any;
141
156
  /**
142
157
  * Gets or sets the template for the marker to render custom elements.
143
158
  * @default null