@syncfusion/ej2-maps 23.1.40 → 23.1.42
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/CHANGELOG.md +2 -0
- 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 +7 -1
- package/dist/es6/ej2-maps.es2015.js.map +1 -1
- package/dist/es6/ej2-maps.es5.js +6 -0
- 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 +7 -7
- package/src/maps/layers/marker.js +6 -0
package/dist/global/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
* filename: index.d.ts
|
|
3
|
-
* version : 23.1.
|
|
3
|
+
* version : 23.1.42
|
|
4
4
|
* Copyright Syncfusion Inc. 2001 - 2023. All rights reserved.
|
|
5
5
|
* Use of this code is subject to the terms of our license.
|
|
6
6
|
* A copy of the current license can be obtained at any time by e-mailing
|
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"_from": "@syncfusion/ej2-maps@*",
|
|
3
|
-
"_id": "@syncfusion/ej2-maps@23.1.
|
|
3
|
+
"_id": "@syncfusion/ej2-maps@23.1.40",
|
|
4
4
|
"_inBundle": false,
|
|
5
|
-
"_integrity": "sha512-
|
|
5
|
+
"_integrity": "sha512-Eiy1fej4Cqq0eApfWLUEwf0dBst8jr2WTSMvRGPxKqIFjsJqbMLblWJB6n8250dAm0DE4TXW51xc+VbbA8XEuA==",
|
|
6
6
|
"_location": "/@syncfusion/ej2-maps",
|
|
7
7
|
"_phantomChildren": {},
|
|
8
8
|
"_requested": {
|
|
@@ -23,8 +23,8 @@
|
|
|
23
23
|
"/@syncfusion/ej2-react-maps",
|
|
24
24
|
"/@syncfusion/ej2-vue-maps"
|
|
25
25
|
],
|
|
26
|
-
"_resolved": "https://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-maps/-/ej2-maps-23.1.
|
|
27
|
-
"_shasum": "
|
|
26
|
+
"_resolved": "https://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-maps/-/ej2-maps-23.1.40.tgz",
|
|
27
|
+
"_shasum": "62ed03fef1b291c3de0b986b1861370b65f026d5",
|
|
28
28
|
"_spec": "@syncfusion/ej2-maps@*",
|
|
29
29
|
"_where": "/jenkins/workspace/elease-automation_release_23.1.1/packages/included",
|
|
30
30
|
"author": {
|
|
@@ -35,8 +35,8 @@
|
|
|
35
35
|
},
|
|
36
36
|
"bundleDependencies": false,
|
|
37
37
|
"dependencies": {
|
|
38
|
-
"@syncfusion/ej2-base": "~23.1.
|
|
39
|
-
"@syncfusion/ej2-buttons": "~23.1.
|
|
38
|
+
"@syncfusion/ej2-base": "~23.1.41",
|
|
39
|
+
"@syncfusion/ej2-buttons": "~23.1.42",
|
|
40
40
|
"@syncfusion/ej2-compression": "~23.1.36",
|
|
41
41
|
"@syncfusion/ej2-data": "~23.1.36",
|
|
42
42
|
"@syncfusion/ej2-file-utils": "~23.1.36",
|
|
@@ -93,6 +93,6 @@
|
|
|
93
93
|
"url": "git+https://github.com/syncfusion/ej2-javascript-ui-controls.git"
|
|
94
94
|
},
|
|
95
95
|
"typings": "index.d.ts",
|
|
96
|
-
"version": "23.1.
|
|
96
|
+
"version": "23.1.42",
|
|
97
97
|
"sideEffects": false
|
|
98
98
|
}
|
|
@@ -280,6 +280,12 @@ var Marker = /** @class */ (function () {
|
|
|
280
280
|
*/
|
|
281
281
|
Marker.prototype.markerClick = function (e) {
|
|
282
282
|
var target = e.target.id;
|
|
283
|
+
if (target.indexOf(this.maps.element.id) === -1) {
|
|
284
|
+
var ancestor = e.target.closest('.' + this.maps.element.id + '_marker_template_element');
|
|
285
|
+
if (!isNullOrUndefined(ancestor) && ancestor.id.indexOf('_MarkerIndex_') > -1) {
|
|
286
|
+
target = ancestor.id;
|
|
287
|
+
}
|
|
288
|
+
}
|
|
283
289
|
if (target.indexOf('_LayerIndex_') === -1 || target.indexOf('_cluster_') > 0) {
|
|
284
290
|
return;
|
|
285
291
|
}
|