egovamap 0.35.56 → 0.35.58

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.
@@ -1550,6 +1550,12 @@ var EGovaGISMap = function (
1550
1550
  callback)
1551
1551
  }
1552
1552
 
1553
+ /** 执行轨迹图层的方法 */
1554
+ that.excuteTraceMethod = function(funcName, args){
1555
+ if (scene === null) return;
1556
+ return that.callMap('excuteTraceMethod',funcName, ...args)
1557
+ }
1558
+
1553
1559
  /*渐变轨迹,根据关键点下标显示对应弹窗*/
1554
1560
  that.showGradientLayerPopup = function (
1555
1561
  index
@@ -2579,6 +2579,13 @@ var EGovaMap = function (
2579
2579
  }
2580
2580
  };
2581
2581
 
2582
+ that.excuteTraceMethod = function(funcName, args){
2583
+ if (scene === null) return;
2584
+ if (gisMap !== null) {
2585
+ return gisMap.excuteTraceMethod(funcName, args);
2586
+ }
2587
+ }
2588
+
2582
2589
  that.showGradientLayerPopup = function (index) {
2583
2590
  if (scene === null) return;
2584
2591
  if (gisMap !== null) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "egovamap",
3
- "version": "0.35.56",
3
+ "version": "0.35.58",
4
4
  "description": "eUrbanGIS SDK",
5
5
  "main": "index.js",
6
6
  "scripts": {