@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
|
@@ -6364,14 +6364,19 @@ class LayerPanel {
|
|
|
6364
6364
|
this.rectBounds = null;
|
|
6365
6365
|
const shapeSettings = this.currentLayer.shapeSettings;
|
|
6366
6366
|
for (let r = 0; r < renderData.length; r++) {
|
|
6367
|
+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
6367
6368
|
const geometryData = renderData[r];
|
|
6369
|
+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
6368
6370
|
const geom = geometryData['geometry'];
|
|
6369
6371
|
const hasGeom = !isNullOrUndefined(geom);
|
|
6370
6372
|
const hasCoords = !isNullOrUndefined(geometryData['coordinates']);
|
|
6371
6373
|
if (hasGeom || hasCoords) {
|
|
6372
6374
|
const type = hasGeom ? geom['type'] : geometryData['type'];
|
|
6375
|
+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
6373
6376
|
const coords = hasGeom ? geom['coordinates'] : geometryData['coordinates'];
|
|
6377
|
+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
6374
6378
|
const data = geom;
|
|
6379
|
+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
6375
6380
|
const properties = geometryData['properties'];
|
|
6376
6381
|
this.generatePoints(type, coords, data, properties);
|
|
6377
6382
|
}
|
|
@@ -6436,6 +6441,7 @@ class LayerPanel {
|
|
|
6436
6441
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
6437
6442
|
this.currentLayer.dataSource, currentShapeData['property'], this.currentLayer.shapeDataPath, this.currentLayer.shapePropertyPath, this.currentLayer);
|
|
6438
6443
|
if (k !== null) {
|
|
6444
|
+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
6439
6445
|
const currentDataSource = this.currentLayer.dataSource[k];
|
|
6440
6446
|
if (currentDataSource[shapeSettings.borderColorValuePath]) {
|
|
6441
6447
|
borderValue.color = currentDataSource[shapeSettings.borderColorValuePath];
|