egovamap 0.33.2 → 0.33.4
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/egovagisviewer.js +2 -2
- package/egovamap/egovaglobe.js +373 -355
- package/egovamap/egovamap.js +5168 -4972
- package/package.json +1 -1
|
@@ -1493,7 +1493,7 @@ var EGovaGISMap = function (
|
|
|
1493
1493
|
optimizeParams,
|
|
1494
1494
|
callback
|
|
1495
1495
|
){
|
|
1496
|
-
if (scene
|
|
1496
|
+
if (scene === null) return;
|
|
1497
1497
|
that.callMap(
|
|
1498
1498
|
"showTraceGradientLayer",
|
|
1499
1499
|
traceData,
|
|
@@ -1505,7 +1505,7 @@ var EGovaGISMap = function (
|
|
|
1505
1505
|
that.showGradientLayerPopup = function (
|
|
1506
1506
|
index
|
|
1507
1507
|
){
|
|
1508
|
-
if (scene
|
|
1508
|
+
if (scene === null) return;
|
|
1509
1509
|
that.callMap(
|
|
1510
1510
|
"showGradientLayerPopup",
|
|
1511
1511
|
index)
|