egovamap 0.12.4 → 0.13.0

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.
@@ -380,9 +380,6 @@ var egovaBI = function(globeMap, gisMap, mapType){
380
380
  * @date: 2021-11-11 15:40:31
381
381
  */
382
382
  this.showPolyline_BI = function (layerName, positions = [], options = {}) {
383
- if (scene === null) {
384
- return;
385
- }
386
383
  if (globeMap !== null) {
387
384
  // 默认参数
388
385
  let defaultOpt = {
@@ -421,7 +418,7 @@ var egovaBI = function(globeMap, gisMap, mapType){
421
418
  //click相关
422
419
  clickColor: "rgb(255, 255, 0.0)", // 点击后的颜色
423
420
  clickWidth: 30, // 点击后的宽度
424
- clickCallback: function(e) {console.log('click polyline', e)},
421
+ clickCallback: undefined, // function(e) {console.log('click polyline', e)},
425
422
  mouseOverCallBack: undefined
426
423
  }
427
424
  }
@@ -1204,6 +1204,22 @@ var EGovaGISMap = function ($container, pScene, prefix, gisParams, mapConfig,con
1204
1204
  var config=scene.layerUsageConfig;
1205
1205
  scene.fire(msgPrefix + ":change3dlayerUsageConfig", {args: [config]}, parentScene);
1206
1206
  }
1207
+ /*显示多轨迹*/
1208
+ that.showTraceMultiHisLayer = function(objectIDs, symbolType, beginDate, endDate, clear, zoom, hStyle) {
1209
+ scene.fire((msgPrefix + ":showTraceMultiHisLayer"), {args: [objectIDs, symbolType, beginDate, endDate, clear, zoom, hStyle]}, parentScene);
1210
+ }
1211
+ /*清除多轨迹*/
1212
+ that.claerTraceMultiHisLayer = function() {
1213
+ scene.fire((msgPrefix + ":claerTraceMultiHisLayer"), {args: []}, parentScene);
1214
+ }
1215
+ /*多人员图标通过id高亮*/
1216
+ that.multiPointsSelectbyID = function(id) {
1217
+ scene.fire((msgPrefix + ":multiPointsSelectbyID"), {args: [id]}, parentScene);
1218
+ }
1219
+ /*多轨迹通过id高亮*/
1220
+ that.traceMultiSelectbyID = function(id) {
1221
+ scene.fire((msgPrefix + ":traceMultiSelectbyID"), {args: [id]}, parentScene);
1222
+ }
1207
1223
 
1208
1224
  that.init();
1209
1225
  }
@@ -1355,13 +1355,16 @@ var EGovaGISMap = function ($container, pScene, prefix, gisParams, mapConfig, co
1355
1355
  }
1356
1356
 
1357
1357
  /* 圆饼图 */
1358
- that.addCircleChart = function (name, data, color, param, id, minZoom, maxZoom) {
1358
+ that.addCircleChart = function (name, data, color, param, id, minZoom, maxZoom, clickCallback) {
1359
1359
  color = color || "#1B5771";
1360
1360
  param = param || {
1361
1361
  minRadius: 20,
1362
1362
  rangeRadius: 20
1363
1363
  };
1364
- that.callMap('addCircleChart', name, data, color, param, id, minZoom, maxZoom);
1364
+ var callback = function(type,info){
1365
+ if(type === "clickCallback" && clickCallback) clickCallback(info);
1366
+ }
1367
+ that.callMap('addCircleChart', name, data, color, param, id, minZoom, maxZoom, callback);
1365
1368
  }
1366
1369
 
1367
1370
  /* 饼图 */
@@ -761,10 +761,10 @@ var EGovaGlobeMap = function ($container, pScene, prefix, mapConfig, context, ca
761
761
  }
762
762
 
763
763
  /* 缩放到指定中心点和级别 */
764
- that.centerAndZoom = function(x, y, level, heading, picth, duration) {
764
+ that.centerAndZoom = function(x, y, level, heading, picth, duration, opt) {
765
765
  if (scene == null)
766
766
  return;
767
- that.fireEvent("centerAndZoom", {args: [x, y, level, heading, picth, duration]}, false);
767
+ that.fireEvent("centerAndZoom", {args: [x, y, level, heading, picth, duration, opt]}, false);
768
768
  }
769
769
 
770
770
  /* 缩放到指定级别 */
@@ -395,7 +395,7 @@ var EGovaMap = function (containerID, callback, mapConfig, mapType, mapParam, co
395
395
 
396
396
  }
397
397
  /* 缩放到指定中心点和级别 */
398
- that.centerAndZoom = function (x, y, level, heading, picth, duration) {
398
+ that.centerAndZoom = function (x, y, level, heading, picth, duration, opt) {
399
399
  if (scene == null)
400
400
  return;
401
401
  if (gisMap != null) {
@@ -403,7 +403,7 @@ var EGovaMap = function (containerID, callback, mapConfig, mapType, mapParam, co
403
403
  }
404
404
  if (globeMap != null) {
405
405
  var lonlat = MapUtils.toLonLat(x, y);
406
- globeMap.centerAndZoom(lonlat.x, lonlat.y, level, heading, picth, duration);
406
+ globeMap.centerAndZoom(lonlat.x, lonlat.y, level, heading, picth, duration, opt);
407
407
  }
408
408
  }
409
409
  /* 缩放到指定级别 */
@@ -2099,7 +2099,7 @@ var EGovaMap = function (containerID, callback, mapConfig, mapType, mapParam, co
2099
2099
  }
2100
2100
 
2101
2101
  /* 区域饼图 */
2102
- that.addCircleChart = function (name, data, color, param) {
2102
+ that.addCircleChart = function (name, data, color, param, minZoom, maxZoom, clickCallback) {
2103
2103
  if (scene == null)
2104
2104
  return;
2105
2105
  if (gisMap != null) {
@@ -3622,6 +3622,38 @@ var EGovaMap = function (containerID, callback, mapConfig, mapType, mapParam, co
3622
3622
  gisMap.removeRecCurrentV2Layer();
3623
3623
  }
3624
3624
  }
3625
+ /*加载多轨迹*/
3626
+ that.showTraceMultiHisLayer = function(objectIDs, symbolType, beginDate, endDate, clear, zoom, hStyle){
3627
+ if (scene == null)
3628
+ return;
3629
+ if (gisMap != null) {
3630
+ gisMap.showTraceMultiHisLayer.apply(this, arguments);
3631
+ }
3632
+ }
3633
+ /*清除多轨迹*/
3634
+ that.claerTraceMultiHisLayer = function(){
3635
+ if (scene == null)
3636
+ return;
3637
+ if (gisMap != null) {
3638
+ gisMap.claerTraceMultiHisLayer.apply(this, arguments);
3639
+ }
3640
+ }
3641
+ /*多人员图标通过id高亮*/
3642
+ that.multiPointsSelectbyID = function(id){
3643
+ if (scene == null)
3644
+ return;
3645
+ if (gisMap != null) {
3646
+ gisMap.multiPointsSelectbyID.apply(this, arguments);
3647
+ }
3648
+ }
3649
+ /*多轨迹通过id高亮*/
3650
+ that.traceMultiSelectbyID = function(id){
3651
+ if (scene == null)
3652
+ return;
3653
+ if (gisMap != null) {
3654
+ gisMap.traceMultiSelectbyID.apply(this, arguments);
3655
+ }
3656
+ }
3625
3657
 
3626
3658
 
3627
3659
  that.initMap(containerID, callback, mapType, mapConfig);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "egovamap",
3
- "version": "0.12.4",
3
+ "version": "0.13.0",
4
4
  "description": "eUrbanGIS SDK",
5
5
  "main": "index.js",
6
6
  "scripts": {