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.
@@ -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
  };
@@ -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)();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "egovamap",
3
- "version": "0.16.7",
3
+ "version": "0.16.8",
4
4
  "description": "eUrbanGIS SDK",
5
5
  "main": "index.js",
6
6
  "scripts": {