egovamap 0.35.54 → 0.35.56
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/egovamap/egovaBI.js
CHANGED
|
@@ -491,6 +491,7 @@ var egovaBI = function (globeMap, gisMap, mapType) {
|
|
|
491
491
|
},
|
|
492
492
|
critical: ctrOption.critical || 10,
|
|
493
493
|
clickShowSpiralPoint: ctrOption.clickShowSpiralPoint,
|
|
494
|
+
skipClusterExpand: ctrOption.skipClusterExpand || false,
|
|
494
495
|
labelStyle: {
|
|
495
496
|
type: "text",
|
|
496
497
|
color: ctrOption.labelColor || [255, 255, 255, 1],
|
|
@@ -2909,6 +2909,10 @@ var EGovaGISMap = function (
|
|
|
2909
2909
|
return that.callMap("addMigrationLines", data, options);
|
|
2910
2910
|
}
|
|
2911
2911
|
|
|
2912
|
+
that.addOverviewMapV22 = function (options) {
|
|
2913
|
+
return that.callMap("addOverviewMapV22", options);
|
|
2914
|
+
}
|
|
2915
|
+
|
|
2912
2916
|
that.init();
|
|
2913
2917
|
};
|
|
2914
2918
|
|
package/egovamap/egovamap.js
CHANGED
|
@@ -5722,6 +5722,13 @@ var EGovaMap = function (
|
|
|
5722
5722
|
}
|
|
5723
5723
|
};
|
|
5724
5724
|
|
|
5725
|
+
that.addOverviewMapV22 = function (options) {
|
|
5726
|
+
if (scene == null) return;
|
|
5727
|
+
if (gisMap != null) {
|
|
5728
|
+
gisMap.addOverviewMapV22.apply(this, arguments);
|
|
5729
|
+
}
|
|
5730
|
+
};
|
|
5731
|
+
|
|
5725
5732
|
that.initMap(containerID, callback, mapType, mapConfig, mapParam);
|
|
5726
5733
|
|
|
5727
5734
|
// EGovaBI(globeMap).bind(this)();
|