egovamap 0.35.39 → 0.35.40

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.
@@ -2896,6 +2896,15 @@ var EGovaGISMap = function (
2896
2896
  that.identifyV22 = function( options) {
2897
2897
  return that.callMap("identifyV22", options);
2898
2898
  }
2899
+
2900
+ that.showGeoserverVTLayer = function(id, options) {
2901
+ return that.callMap("showGeoserverVTLayer", id, options);
2902
+ }
2903
+
2904
+ that.setGeoserverVTLayer = function(id, options) {
2905
+ return that.callMap("setGeoserverVTLayer", id, options);
2906
+ }
2907
+
2899
2908
  that.init();
2900
2909
  };
2901
2910
 
@@ -5694,6 +5694,20 @@ var EGovaMap = function (
5694
5694
  }
5695
5695
  };
5696
5696
 
5697
+ that.showGeoserverVTLayer = function (id, options) {
5698
+ if (scene == null) return;
5699
+ if (gisMap != null) {
5700
+ gisMap.showGeoserverVTLayer.apply(this, arguments);
5701
+ }
5702
+ };
5703
+
5704
+ that.setGeoserverVTLayer = function (id, options) {
5705
+ if (scene == null) return;
5706
+ if (gisMap != null) {
5707
+ gisMap.setGeoserverVTLayer.apply(this, arguments);
5708
+ }
5709
+ };
5710
+
5697
5711
  that.initMap(containerID, callback, mapType, mapConfig, mapParam);
5698
5712
 
5699
5713
  // EGovaBI(globeMap).bind(this)();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "egovamap",
3
- "version": "0.35.39",
3
+ "version": "0.35.40",
4
4
  "description": "eUrbanGIS SDK",
5
5
  "main": "index.js",
6
6
  "scripts": {