egovamap 0.33.14 → 0.33.15
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 +4 -1
- package/package.json +1 -1
package/egovamap/egovaBI.js
CHANGED
|
@@ -106,7 +106,10 @@ var egovaBI = function (globeMap, gisMap, mapType) {
|
|
|
106
106
|
let clear = options.common.clear;
|
|
107
107
|
let highLightType = -1;
|
|
108
108
|
let infoStyle = null;
|
|
109
|
-
let renderCanvas =
|
|
109
|
+
let renderCanvas = null;
|
|
110
|
+
if(options.option && options.option.renderCanvas !== undefined){
|
|
111
|
+
renderCanvas = options.option.renderCanvas;
|
|
112
|
+
}
|
|
110
113
|
let tagName = layerName;
|
|
111
114
|
let clusterOption = null;
|
|
112
115
|
|