fence.js 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182
  1. (function () {
  2. var page = {
  3. init: function ($page, param) {
  4. // //地图初始化
  5. var map = new AMap.Map("fence-map", {
  6. center: [113.955439, 22.542956],//地图中心点
  7. zoom: 12 //地图显示的缩放级别
  8. });
  9. // // var polygonFence = new AMap.Polygon({
  10. // // strokeColor: "#FF33FF",
  11. // // strokeWeight: 6,
  12. // // strokeOpacity: 0.2,
  13. // // fillOpacity: 0.4,
  14. // // fillColor: '#1791fc',
  15. // // zIndex: 50,
  16. // // })
  17. var fenceInfo = param.fenceInfo;
  18. var defaultPt = param.defaultLocation;
  19. var ableStatus = param.fenceAlarmStatus;
  20. if(ableStatus){
  21. $('#fence-switch').addClass('f-active');
  22. }
  23. console.log(param);
  24. var circleFence = new AMap.Circle({
  25. center: defaultPt,
  26. radius: fenceInfo.data.radius || 100,
  27. strokeOpacity: 0,
  28. strokeWeight: 0,
  29. strokeOpacity: 0.2,
  30. fillOpacity: 0.3,
  31. fillColor : '#1791fc',
  32. zIndex: 50,
  33. });
  34. circleFence.setMap(map)
  35. map.setFitView(circleFence);
  36. // displayFence(fenceInfo);
  37. $page.find('#fence-switch').lrswitch();
  38. var rangeObj = $('#fence-radius');
  39. rangeObj[0].value = fenceInfo.data.radius || 100;
  40. $('#display-radius')[0].innerHTML = rangeObj[0].value;
  41. //获取要设置的半径
  42. function getSetRadius(){
  43. return rangeObj[0].value;
  44. }
  45. $('#fence-radius').on('input',function(){
  46. $('#display-radius')[0].innerHTML = this.value;
  47. var radius = getSetRadius();
  48. circleFence.setRadius(radius);
  49. // setFenceView(circleFence);
  50. map.setFitView([ circleFence ]);
  51. });
  52. map.on('moveend', function(){
  53. var center = map.getCenter();
  54. circleFence.setCenter(center);
  55. });
  56. //保存
  57. $page.find('#save-fence').on('tap', function(){
  58. learun.layer.confirm('保存将会覆盖原围栏', function (_index) {
  59. if(_index === '1'){
  60. var data = getPostData();
  61. if(!data){
  62. learun.layer.toast('围栏信息有误或者为空');
  63. return;
  64. }
  65. postFence(data);
  66. }else{
  67. return;
  68. }
  69. }, '保存围栏', ['否', '是']);
  70. });
  71. //获取提交数据
  72. function getPostData(){
  73. var fenceEnable = getAbleStatus();
  74. var radius = circleFence.getRadius();
  75. var circleCenter = circleFence.getCenter();
  76. var center = {lng: circleCenter.lng, lat:circleCenter.lat}
  77. var data = {
  78. type: 'circle',
  79. data: {radius: radius, center: center},
  80. fenceAlarmEnable: fenceEnable
  81. };
  82. return data;
  83. }
  84. //获取启用状态
  85. function getAbleStatus(){
  86. var status = $('#fence-switch').hasClass('f-active');
  87. if(status){
  88. return true;
  89. }else{
  90. return false;
  91. }
  92. }
  93. //post围栏信息
  94. function postFence(data){
  95. learun.httppost(config.webapi+'?s=api/save_fence_info',data,function(res){
  96. if(!res.success){
  97. learun.layer.toast(res.message);
  98. return;
  99. }
  100. learun.layer.toast('保存成功');
  101. });
  102. }
  103. //显示围栏(初始)
  104. // function displayFence(fenceInfo){
  105. // if(!fenceInfo){
  106. // circleFence.setCenter(defaultPt);
  107. // var radius = getSetRadius();
  108. // circleFence.setRadius(radius);
  109. // // circleFence.setMap(map);
  110. // map.setFitView([ circleFence ]);
  111. // return;
  112. // }
  113. // var fence = fenceInfo;
  114. // console.log(fence);
  115. // if(fence.type == 'circle'){
  116. // var pt = new AMap.LngLat(fence.data.center.lng, fence.data.center.lat);
  117. // // circleFence.setCenter(pt);
  118. // circleFence.setRadius(fence.data.radius);
  119. // // circleFence.setMap(map);
  120. // map.setFitView([ circleFence ]);
  121. // return;
  122. // }
  123. // // if(fence.type == 'polygon'){
  124. // // var pts = [];
  125. // // var paths = fence.data.vertex;
  126. // // paths.forEach(v => {
  127. // // pts.push([v.lng, v.lat]);
  128. // // });
  129. // // polygonFence.setPath(pts);
  130. // // polygonFence.setMap(map);
  131. // // map.setFitView([ polygonFence ]);
  132. // // return;
  133. // // }
  134. // }
  135. }
  136. };
  137. return page;
  138. })();