egovamap 0.32.10 → 0.33.1

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.
@@ -2499,6 +2499,16 @@ var EGovaGISMap = function (
2499
2499
  );
2500
2500
  };
2501
2501
 
2502
+ that.mouseMoveEvent = function (callback) {
2503
+ if (scene == null) return;
2504
+ scene.fire(
2505
+ msgPrefix + ":mouseMoveEvent",
2506
+ { args: [callback] },
2507
+ parentScene,
2508
+ false
2509
+ );
2510
+ };
2511
+
2502
2512
  that.init();
2503
2513
  };
2504
2514
  export default EGovaGISMap;
@@ -1487,6 +1487,20 @@ var EGovaGISMap = function (
1487
1487
  );
1488
1488
  };
1489
1489
 
1490
+ /* 玄藏PC端轨迹*/
1491
+ that.showTraceGradientLayer = function (
1492
+ traceData,
1493
+ optimizeParams,
1494
+ callback
1495
+ ){
1496
+ if (scene == null) return;
1497
+ that.callMap(
1498
+ "showTraceGradientLayer",
1499
+ traceData,
1500
+ optimizeParams,
1501
+ callback)
1502
+ }
1503
+
1490
1504
  /* 开始实时轨迹 */
1491
1505
  that.startRealtimeTrace = function (
1492
1506
  groupIDs,
@@ -2420,6 +2420,22 @@ var EGovaMap = function (
2420
2420
  }
2421
2421
  };
2422
2422
 
2423
+ that.showTraceGradientLayer = function (
2424
+ traceData,
2425
+ optimizeParams,
2426
+ callback
2427
+ ){
2428
+ if (scene == null) return;
2429
+ if (gisMap != null) {
2430
+ gisMap.showTraceGradientLayer(
2431
+ traceData,
2432
+ optimizeParams,
2433
+ callback
2434
+ );
2435
+ }
2436
+
2437
+ }
2438
+
2423
2439
  that.updatePositionByTime = function (time) {
2424
2440
  if (scene == null) return;
2425
2441
  if (gisMap != null && gisMap.gisVisible) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "egovamap",
3
- "version": "0.32.10",
3
+ "version": "0.33.1",
4
4
  "description": "eUrbanGIS SDK",
5
5
  "main": "index.js",
6
6
  "scripts": {