@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/es6/ej2-maps.es5.js
CHANGED
|
@@ -6619,14 +6619,19 @@ var LayerPanel = /** @__PURE__ @class */ (function () {
|
|
|
6619
6619
|
this.rectBounds = null;
|
|
6620
6620
|
var shapeSettings = this.currentLayer.shapeSettings;
|
|
6621
6621
|
for (var r = 0; r < renderData.length; r++) {
|
|
6622
|
+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
6622
6623
|
var geometryData = renderData[r];
|
|
6624
|
+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
6623
6625
|
var geom = geometryData['geometry'];
|
|
6624
6626
|
var hasGeom = !isNullOrUndefined(geom);
|
|
6625
6627
|
var hasCoords = !isNullOrUndefined(geometryData['coordinates']);
|
|
6626
6628
|
if (hasGeom || hasCoords) {
|
|
6627
6629
|
var type = hasGeom ? geom['type'] : geometryData['type'];
|
|
6630
|
+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
6628
6631
|
var coords = hasGeom ? geom['coordinates'] : geometryData['coordinates'];
|
|
6632
|
+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
6629
6633
|
var data = geom;
|
|
6634
|
+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
6630
6635
|
var properties = geometryData['properties'];
|
|
6631
6636
|
this.generatePoints(type, coords, data, properties);
|
|
6632
6637
|
}
|
|
@@ -6691,6 +6696,7 @@ var LayerPanel = /** @__PURE__ @class */ (function () {
|
|
|
6691
6696
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
6692
6697
|
this_1.currentLayer.dataSource, currentShapeData['property'], this_1.currentLayer.shapeDataPath, this_1.currentLayer.shapePropertyPath, this_1.currentLayer);
|
|
6693
6698
|
if (k !== null) {
|
|
6699
|
+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
6694
6700
|
var currentDataSource = this_1.currentLayer.dataSource[k];
|
|
6695
6701
|
if (currentDataSource[shapeSettings.borderColorValuePath]) {
|
|
6696
6702
|
borderValue.color = currentDataSource[shapeSettings.borderColorValuePath];
|