egovamap 0.35.57 → 0.35.60
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
|
@@ -228,6 +228,7 @@ var egovaBI = function (globeMap, gisMap, mapType) {
|
|
|
228
228
|
critical: options.clusterStyle.critical || 10,
|
|
229
229
|
level: options.clusterStyle.level,
|
|
230
230
|
clickShowSpiralPoint: options.clusterStyle.clickShowSpiralPoint,
|
|
231
|
+
skipClusterExpand: ctrOption.skipClusterExpand || false,
|
|
231
232
|
labelStyle: {
|
|
232
233
|
type: "text",
|
|
233
234
|
color: options.clusterStyle.fillColor,
|
|
@@ -1553,7 +1553,7 @@ var EGovaGISMap = function (
|
|
|
1553
1553
|
/** 执行轨迹图层的方法 */
|
|
1554
1554
|
that.excuteTraceMethod = function(funcName, args){
|
|
1555
1555
|
if (scene === null) return;
|
|
1556
|
-
that.callMap('excuteTraceMethod',funcName, ...args)
|
|
1556
|
+
return that.callMap('excuteTraceMethod',funcName, ...args)
|
|
1557
1557
|
}
|
|
1558
1558
|
|
|
1559
1559
|
/*渐变轨迹,根据关键点下标显示对应弹窗*/
|
package/egovamap/egovamap.js
CHANGED
|
@@ -2582,7 +2582,7 @@ var EGovaMap = function (
|
|
|
2582
2582
|
that.excuteTraceMethod = function(funcName, args){
|
|
2583
2583
|
if (scene === null) return;
|
|
2584
2584
|
if (gisMap !== null) {
|
|
2585
|
-
gisMap.excuteTraceMethod(funcName, args);
|
|
2585
|
+
return gisMap.excuteTraceMethod(funcName, args);
|
|
2586
2586
|
}
|
|
2587
2587
|
}
|
|
2588
2588
|
|