egovamap 0.35.53 → 0.35.55
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 +8 -0
- package/egovamap/egovamap.js +14 -0
- package/package.json +1 -1
|
@@ -2905,6 +2905,14 @@ var EGovaGISMap = function (
|
|
|
2905
2905
|
return that.callMap("setGeoserverVTLayer", id, options);
|
|
2906
2906
|
}
|
|
2907
2907
|
|
|
2908
|
+
that.addMigrationLines = function(data, options) {
|
|
2909
|
+
return that.callMap("addMigrationLines", data, options);
|
|
2910
|
+
}
|
|
2911
|
+
|
|
2912
|
+
that.addOverviewMapV22 = function (options) {
|
|
2913
|
+
return that.callMap("addOverviewMapV22", options);
|
|
2914
|
+
}
|
|
2915
|
+
|
|
2908
2916
|
that.init();
|
|
2909
2917
|
};
|
|
2910
2918
|
|
package/egovamap/egovamap.js
CHANGED
|
@@ -5715,6 +5715,20 @@ var EGovaMap = function (
|
|
|
5715
5715
|
}
|
|
5716
5716
|
};
|
|
5717
5717
|
|
|
5718
|
+
that.addMigrationLines = function (data, options) {
|
|
5719
|
+
if (scene == null) return;
|
|
5720
|
+
if (gisMap != null) {
|
|
5721
|
+
gisMap.addMigrationLines.apply(this, arguments);
|
|
5722
|
+
}
|
|
5723
|
+
};
|
|
5724
|
+
|
|
5725
|
+
that.addOverviewMapV22 = function (options) {
|
|
5726
|
+
if (scene == null) return;
|
|
5727
|
+
if (gisMap != null) {
|
|
5728
|
+
gisMap.addOverviewMapV22.apply(this, arguments);
|
|
5729
|
+
}
|
|
5730
|
+
};
|
|
5731
|
+
|
|
5718
5732
|
that.initMap(containerID, callback, mapType, mapConfig, mapParam);
|
|
5719
5733
|
|
|
5720
5734
|
// EGovaBI(globeMap).bind(this)();
|