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.
- package/egovamap/egovagisviewer.js +9 -0
- package/egovamap/egovamap.js +14 -0
- package/package.json +1 -1
|
@@ -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
|
|
package/egovamap/egovamap.js
CHANGED
|
@@ -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)();
|