@syncfusion/ej2-maps 31.2.12 → 32.1.19
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/.gitleaksignore +8 -8
- package/aceconfig.js +17 -0
- package/dist/ej2-maps.min.js +0 -9
- package/dist/ej2-maps.umd.min.js +0 -9
- package/dist/ej2-maps.umd.min.js.map +1 -1
- package/dist/es6/ej2-maps.es2015.js +6 -0
- 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 +0 -9
- package/dist/global/ej2-maps.min.js.map +1 -1
- package/dist/global/index.d.ts +0 -9
- package/package.json +8 -8
- package/src/maps/layers/layer-panel.js +6 -0
package/dist/global/index.d.ts
CHANGED
|
@@ -1,12 +1,3 @@
|
|
|
1
|
-
/*!
|
|
2
|
-
* filename: index.d.ts
|
|
3
|
-
* version : 31.2.12
|
|
4
|
-
* Copyright Syncfusion Inc. 2001 - 2025. All rights reserved.
|
|
5
|
-
* Use of this code is subject to the terms of our license.
|
|
6
|
-
* A copy of the current license can be obtained at any time by e-mailing
|
|
7
|
-
* licensing@syncfusion.com. Any infringement will be prosecuted under
|
|
8
|
-
* applicable laws.
|
|
9
|
-
*/
|
|
10
1
|
import * as _maps from '@syncfusion/ej2-maps';
|
|
11
2
|
|
|
12
3
|
export declare namespace ej {
|
package/package.json
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@syncfusion/ej2-maps",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "32.1.19",
|
|
4
4
|
"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",
|
|
5
5
|
"author": "Syncfusion Inc.",
|
|
6
6
|
"license": "SEE LICENSE IN license",
|
|
7
7
|
"dependencies": {
|
|
8
|
-
"@syncfusion/ej2-base": "~
|
|
9
|
-
"@syncfusion/ej2-buttons": "~
|
|
10
|
-
"@syncfusion/ej2-compression": "~
|
|
11
|
-
"@syncfusion/ej2-data": "~
|
|
12
|
-
"@syncfusion/ej2-file-utils": "~
|
|
13
|
-
"@syncfusion/ej2-pdf-export": "~
|
|
14
|
-
"@syncfusion/ej2-svg-base": "~
|
|
8
|
+
"@syncfusion/ej2-base": "~32.1.19",
|
|
9
|
+
"@syncfusion/ej2-buttons": "~32.1.19",
|
|
10
|
+
"@syncfusion/ej2-compression": "~32.1.19",
|
|
11
|
+
"@syncfusion/ej2-data": "~32.1.19",
|
|
12
|
+
"@syncfusion/ej2-file-utils": "~32.1.19",
|
|
13
|
+
"@syncfusion/ej2-pdf-export": "~32.1.19",
|
|
14
|
+
"@syncfusion/ej2-svg-base": "~32.1.19"
|
|
15
15
|
},
|
|
16
16
|
"devDependencies": {},
|
|
17
17
|
"keywords": [
|
|
@@ -323,14 +323,19 @@ var LayerPanel = /** @class */ (function () {
|
|
|
323
323
|
this.rectBounds = null;
|
|
324
324
|
var shapeSettings = this.currentLayer.shapeSettings;
|
|
325
325
|
for (var r = 0; r < renderData.length; r++) {
|
|
326
|
+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
326
327
|
var geometryData = renderData[r];
|
|
328
|
+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
327
329
|
var geom = geometryData['geometry'];
|
|
328
330
|
var hasGeom = !isNullOrUndefined(geom);
|
|
329
331
|
var hasCoords = !isNullOrUndefined(geometryData['coordinates']);
|
|
330
332
|
if (hasGeom || hasCoords) {
|
|
331
333
|
var type = hasGeom ? geom['type'] : geometryData['type'];
|
|
334
|
+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
332
335
|
var coords = hasGeom ? geom['coordinates'] : geometryData['coordinates'];
|
|
336
|
+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
333
337
|
var data = geom;
|
|
338
|
+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
334
339
|
var properties = geometryData['properties'];
|
|
335
340
|
this.generatePoints(type, coords, data, properties);
|
|
336
341
|
}
|
|
@@ -395,6 +400,7 @@ var LayerPanel = /** @class */ (function () {
|
|
|
395
400
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
396
401
|
this_1.currentLayer.dataSource, currentShapeData['property'], this_1.currentLayer.shapeDataPath, this_1.currentLayer.shapePropertyPath, this_1.currentLayer);
|
|
397
402
|
if (k !== null) {
|
|
403
|
+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
398
404
|
var currentDataSource = this_1.currentLayer.dataSource[k];
|
|
399
405
|
if (currentDataSource[shapeSettings.borderColorValuePath]) {
|
|
400
406
|
borderValue.color = currentDataSource[shapeSettings.borderColorValuePath];
|