egovamap 0.16.7 → 0.16.8
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/egovaglobe.js +5 -0
- package/egovamap/egovamap.js +7 -0
- package/package.json +1 -1
package/egovamap/egovaglobe.js
CHANGED
|
@@ -2188,6 +2188,11 @@ var EGovaGlobeMap = function ($container, pScene, prefix, mapConfig, context, ca
|
|
|
2188
2188
|
if (scene == null)
|
|
2189
2189
|
return;
|
|
2190
2190
|
scene.fire((msgPrefix + ":splitComparison"), { args: [bool] }, parentScene, false);
|
|
2191
|
+
};
|
|
2192
|
+
that.addCIMVector = function(options) {
|
|
2193
|
+
if (scene == null)
|
|
2194
|
+
return;
|
|
2195
|
+
scene.fire((msgPrefix + ":addCIMVector"), { args: [options] }, parentScene, false);
|
|
2191
2196
|
};
|
|
2192
2197
|
that.init();
|
|
2193
2198
|
};
|
package/egovamap/egovamap.js
CHANGED
|
@@ -4210,6 +4210,13 @@ var EGovaMap = function (containerID, callback, mapConfig, mapType, mapParam, co
|
|
|
4210
4210
|
globeMap.splitComparison(bool);
|
|
4211
4211
|
}
|
|
4212
4212
|
};
|
|
4213
|
+
that.addCIMVector = function(options) {
|
|
4214
|
+
if (scene == null)
|
|
4215
|
+
return;
|
|
4216
|
+
if (globeMap != null) {
|
|
4217
|
+
globeMap.addCIMVector(options);
|
|
4218
|
+
}
|
|
4219
|
+
};
|
|
4213
4220
|
that.initMap(containerID, callback, mapType, mapConfig);
|
|
4214
4221
|
|
|
4215
4222
|
// EGovaBI(globeMap).bind(this)();
|