gaodeMapView.js 42.2 KB
Newer Older
1 2 3 4 5
import createPop from "./createPop";
import regulatorBox from "../components/PopWindow/regulatorBox.vue";
import valveWell from "../components/PopWindow/valveWell.vue";
import flowMeter from "../components/PopWindow/flowMeter.vue";
import pipelineView from "../components/PopWindow/pipelineView.vue";
纪泽龙's avatar
纪泽龙 committed
6
import lineInfoWindow from "../components/PopWindowGis/lineInfoWindow.vue";
7
import markerInfoWindow from "../components/PopWindowGis/markerInfoWindow.vue";
纪泽龙's avatar
纪泽龙 committed
8
import removeLineInfoWindow from "../components/PopWindowGis/removeLineInfoWindow.vue";
纪泽龙's avatar
纪泽龙 committed
9
import markerInfoWindowWarn from "../components/PopWindowGis/markerInfoWindowWarn.vue";
纪泽龙's avatar
纪泽龙 committed
10
import troubleInfoWindowWarn from "../components/PopWindowGis/troubleInfoWindowWarn.vue";
纪泽龙's avatar
纪泽龙 committed
11 12 13
import lineInfoWindowWarn from "../components/PopWindowGis/lineInfoWindowWarn.vue";
import { delDeviceInfo } from "@/api/device/deviceInfo";

纪泽龙's avatar
纪泽龙 committed
14 15 16
import workerManInfowindow from "../components/PopWindowGis/workerManInfowindow.vue";
import workerManView from "../components/PopWindowGis/workerManView.vue";

17 18 19
import { getArray } from "@/utils/gassafety.js";
import { delPipe } from "@/api/device/pipe.js";
import vue from "../main";
纪泽龙's avatar
纪泽龙 committed
20
import { Card } from "element-ui";
21 22 23 24 25 26 27 28 29
let defaultCenter = "石家庄";
export let map;
export const DEVICE_TYPE = {
  PIPEPLINE: "1",
  REGEULATORBOX: "2",
  VALUEWELL: "3",
  FLOWMETER: "4",
  DUTYPERSON: "5",
  WORKORDER: "6",
30
  PRESSUREGAGE: "7",
纪泽龙's avatar
纪泽龙 committed
31
  INSPECTOR: "8",
32
  SMALLINSPECTOR: "workPoint",
33
  TROUBLE: "trouble"
34 35 36 37
};
class gaodeMap {
  // 所有线的数组
  polyLines = [];
纪泽龙's avatar
纪泽龙 committed
38 39
  //值班人员的单独数组,轨迹的时候使用
  workerManArr = [];
纪泽龙's avatar
纪泽龙 committed
40
  troubles = [];
纪泽龙's avatar
纪泽龙 committed
41 42
  // 值班人员对象的arr
  workerManMarkArr = [];
43 44 45 46 47 48 49 50 51
  // 是否开启新增
  lineType = 0;
  // 创建一个新的lineObj
  newLineObj = null;
  // onceFlag=false;
  lineFlag = false;
  mouseTool = null;
  myMap = null;
  showInfoWindow = null;
纪泽龙's avatar
纪泽龙 committed
52
  // 工人轨迹用的窗口
纪泽龙's avatar
纪泽龙 committed
53
  markerPassedPolylineInfoWindow = null;
纪泽龙's avatar
纪泽龙 committed
54
  view = null;
55
  handleInfoWindowOpenFunc = null;
56
  onceFlag = false;
57 58
  // 用来判断点击左边抽屉列表的时候移动才消失
  leftListClick = false;
59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76
  //构造函数中设置中央点默认值
  constructor(center) {
    this.markers = [];
    this.center = center ? center : defaultCenter;
    map = new AMap.Map("container", {
      //mask: addMask(result.districtList[0].boundaries),
      center: [114.72995, 38.37417],
      // resizeEnable: true,
      disableSocket: true,
      viewMode: "3D",
      showLabel: true,
      // labelzIndex: 110,
      pitch: 8,
      zoom: 9
      //mapStyle: 'amap://styles/darkblue',
      // mapStyle: 'amap://styles/3b679a15f448a4740ba2ff7524e1a4ae',
    });
    this.myMap = map;
纪泽龙's avatar
纪泽龙 committed
77
    this.myMap.on("mousedown", e => {
纪泽龙's avatar
纪泽龙 committed
78
      console.log(e);
79
      // if (this.lineType !=1 || this.lineFlag) return;
80
      this.closeInfoWindow();
81 82
      this.polyLinesColorClear();

纪泽龙's avatar
纪泽龙 committed
83
      this.view.bottomDataShow = true;
84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100
      if (this.lineType != 1 || this.lineFlag) return;
      // 除了这里,还要利用vue页面的window事件辅助,当组件出来的时候,就得利用window事件
      if (this.newLineObj) {
        vue
          .$confirm("是否重新画管道")
          .then(() => {
            this.newLineObj.polyEditor.close();
            map.remove(this.newLineObj);
            this.newLineObj = null;
            this.lineFlag = false;
            this.createNewLine();
            //console.log("map点击事件新建");
          })
          .catch(() => {});
      }
      // //console.log("抬起来了");
    });
纪泽龙's avatar
纪泽龙 committed
101 102 103
    // 地图开始平移删除infowindow
    this.myMap.on("movestart", () => {
      // console.log("地图平移");
104 105 106 107
      if (this.leftListClick) {
        console.log("moveStart");
        this.closeInfoWindow();
      }
108
      // this.closeInfoWindow();
纪泽龙's avatar
纪泽龙 committed
109
    });
纪泽龙's avatar
纪泽龙 committed
110

纪泽龙's avatar
纪泽龙 committed
111 112 113 114 115
    // 地图开始缩放删除infowindow
    this.myMap.on("zoomstart", () => {
      // console.log("缩放开始")
      this.closeInfoWindow();
    });
116 117 118 119
    this.myMap.on("moveend", () => {
      if (this.handleInfoWindowOpenFunc) {
        this.handleInfoWindowOpenFunc();
        this.handleInfoWindowOpenFunc = null;
纪泽龙's avatar
纪泽龙 committed
120
        this.leftListClick = false;
121
      }
122 123 124 125 126

      // 刚进入页面的时候只调用一次,让左侧的抽屉在地图移动完之后显示
      if (!this.onceFlag) {
        this.onceFlag = true;
        this.view.backFlag = false;
127 128
        // 让抽屉不在隐身
        this.view.drawerOpacity = true;
129
      }
130

131 132 133 134
      // 每次地图移动结束,就让地图可以缩放
      let options = this.myMap.getStatus();
      options.scrollWheel = true;
      this.myMap.setStatus(options);
135
    });
136 137
    this.districtBoundaries();
  }
138
  // 地图移动结束
139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191

  /**
   * 获取map
   * @returns {AMap.Map}
   */
  get getMap() {
    return this.map;
  }

  /**
   * 重新设置中央点
   * @param value
   */
  set setCenter(value) {
    this.center = value;
    this.districtBoundaries();
  }

  resetMapCenter(value) {
    map.setCenter(value);
  }

  /**
   * 设置城市边界
   */

  districtBoundaries() {
    let that = this;
    let opts = {
      subdistrict: 0,
      extensions: "all",
      level: "city"
    };
    let district = new AMap.DistrictSearch(opts);
    district.search(that.center, function(status, result) {
      if (status == "complete") {
        let defaultCenter = [];
        defaultCenter.push(result.districtList[0].center.lng);
        defaultCenter.push(result.districtList[0].center.lat);
        map.setCenter(defaultCenter);
        let bounds = result.districtList[0].boundaries;
        for (let i = 0; i < bounds.length; i += 1) {
          new AMap.Polyline({
            path: bounds[i],
            strokeColor: "#0088ff",
            strokeWeight: 5,
            strokeOpacity: 7,
            map: map
          });
        }
      }
    });
  }
192 193 194 195
  // 地图中点平移
  panTo(lnglat) {
    this.myMap.panTo(lnglat);
  }
196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218
  /**
   * 添加Market
   * @param markerType
   * @param lnglats
   */
  addMarker(markerType, data) {
    let that = this;
    that.markerType = markerType;
    let infoWindow = new AMap.InfoWindow({
      isCustom: true,
      offset: new AMap.Pixel(24, -38),
      anchor: "left-top"
    });
    infoWindow.on("mouseover", function() {
      let options = map.getStatus();
      options.scrollWheel = false;
      map.setStatus(options);
    });
    infoWindow.on("mouseout", function() {
      let options = map.getStatus();
      options.scrollWheel = true;
      map.setStatus(options);
    });
纪泽龙's avatar
纪泽龙 committed
219 220
    this.infoWindowMove(infoWindow);

221 222 223 224 225 226
    let marker = new AMap.Marker({
      position: [data.longitude, data.latitude],
      map: map,
      offset: new AMap.Pixel(0, 5)
    });
    this.setMarkerIcon(marker);
纪泽龙's avatar
纪泽龙 committed
227

纪泽龙's avatar
纪泽龙 committed
228
    // 值班人员的marker
纪泽龙's avatar
纪泽龙 committed
229 230 231 232
    if (
      DEVICE_TYPE.INSPECTOR == markerType ||
      DEVICE_TYPE.SMALLINSPECTOR == markerType
    ) {
纪泽龙's avatar
纪泽龙 committed
233
      // 存值
纪泽龙's avatar
纪泽龙 committed
234 235 236 237 238 239 240 241 242 243 244 245
      const {
        createTime,
        locationId,
        longitude,
        latitude,
        userId,
        type
      } = data;
      marker.setExtData({
        createTime,
        locationId,
        pos: [longitude, latitude],
纪泽龙's avatar
纪泽龙 committed
246 247
        deviceType: type,
        userId
纪泽龙's avatar
纪泽龙 committed
248
      });
纪泽龙's avatar
纪泽龙 committed
249 250
      // 值班人员的事件

纪泽龙's avatar
纪泽龙 committed
251 252 253 254 255 256
      // marker.on("click", e => {
      //   console.log(e);
      //   console.log(e.target.getExtData());
      //   // console.log(Card)
      //   // e.target.content = this.getMarketContent(data);
      // });
纪泽龙's avatar
纪泽龙 committed
257 258 259 260 261 262 263 264 265 266
      // marker.on("mouseover", e => {
      //   that.markerType = markerType;
      //   e.target.content = this.getMarketContent(data);
      //   infoWindow.setContent(e.target.content);
      //   infoWindow.open(map, e.target.getPosition());
      //   that.boxCollision(infoWindow.dom);
      //   // that.addCloneDome(e.target, infoWindow);
      //   // infoWindow.close();
      //   that.workerManInfoWindow = infoWindow;
      // });
267
      marker.markerType = markerType;
纪泽龙's avatar
纪泽龙 committed
268
      marker.data = data;
269
      marker.infoWindow = infoWindow;
纪泽龙's avatar
纪泽龙 committed
270 271 272 273 274
      marker.on("mouseover", this.wokerManOpen);
      marker.on("mouseout", e => {
        e.target.infoWindow.close();
      });

纪泽龙's avatar
纪泽龙 committed
275
      marker.on("mousedown", e => {
纪泽龙's avatar
纪泽龙 committed
276
        // console.log(data);
纪泽龙's avatar
纪泽龙 committed
277
        that.closeInfoWindow();
纪泽龙's avatar
纪泽龙 committed
278
        if (marker.workerPoint) return;
纪泽龙's avatar
纪泽龙 committed
279 280 281 282 283
        that.workerManView({
          title: "值班人员轨迹回放",
          target: marker,
          userId
        });
纪泽龙's avatar
纪泽龙 committed
284
      });
纪泽龙's avatar
纪泽龙 committed
285 286 287 288
      // workerPoint不加入数组
      if (!marker.workerPoint) {
        this.workerManMarkArr.push(marker);
      }
纪泽龙's avatar
纪泽龙 committed
289
    }
290
    // 隐患
291
    if (DEVICE_TYPE.TROUBLE == markerType) {
纪泽龙's avatar
纪泽龙 committed
292 293 294
      marker.markerType = markerType;
      marker.data = data;
      marker.infoWindow = infoWindow;
295
      marker.on("mousedown", this.troubleOpen);
纪泽龙's avatar
纪泽龙 committed
296
      marker.setExtData(data);
纪泽龙's avatar
纪泽龙 committed
297
      this.troubles.push(marker);
298 299
    }

纪泽龙's avatar
纪泽龙 committed
300
    if (
纪泽龙's avatar
纪泽龙 committed
301
      DEVICE_TYPE.WORKORDER != markerType &&
纪泽龙's avatar
纪泽龙 committed
302
      DEVICE_TYPE.INSPECTOR != markerType &&
303
      DEVICE_TYPE.SMALLINSPECTOR != markerType &&
304
      DEVICE_TYPE.TROUBLE != markerType
纪泽龙's avatar
纪泽龙 committed
305
    ) {
纪泽龙's avatar
纪泽龙 committed
306
      // marker.content = this.getMarketContent(data, markerInfoWindow);
307
      marker.infoWindow = infoWindow;
308
      marker.on("mousedown", that.infoOpen);
309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372
      marker.on("mouseout", infoClose);
      marker.setExtData(data);
      that.deviceType = markerType;
      let editWindow = that.createInfowindow("编辑");
      editWindow.fileArr =
        data.iconUrl != "" && data.iconUrl != undefined
          ? [{ url: data.iconUrl }]
          : [];
      editWindow.obj = marker;
      editWindow.gaoMap = that;
      editWindow.map = map;
      marker.on("click", function(e) {
        if ("edit" == that.mapOperateType) {
          editWindow.form = e.target.getExtData();
          editWindow.show();
        } else if ("delete" == that.mapOperateType) {
          let diviceType = {
            "2": "调压箱",
            "3": "阀门井",
            "4": "流量计",
            "7": "压力表"
          };
          vue
            .$confirm(
              '是否删除名称为"' +
                e.target.getExtData().deviceName +
                '"的' +
                diviceType[markerType] +
                " ?",
              "提示",
              {
                type: "warning"
                // center: true
              }
            )
            .then(() => {
              map.remove(marker);
              that.deleteMarker(markerType, data.deviceId);
            })
            .catch(() => {
              vue.$message({
                type: "info",
                // center:true,
                offset: 100,
                message: "已取消删除"
              });
            });
        } /*else {
          //map.setZoomAndCenter(13, e.target.getPosition());
          let infoWindow = new AMap.InfoWindow({
            isCustom: true,
            offset: new AMap.Pixel(24, -38),
            anchor: "left-top"
          });
          infoWindow.setContent(e.target.content);
          infoWindow.open(map, e.target.getPosition());
        }*/
      });
      marker.on("dragend", function(e) {
        editWindow.form.longitude = e.lnglat.lng;
        editWindow.form.latitude = e.lnglat.lat;
      });
    }

纪泽龙's avatar
纪泽龙 committed
373 374 375 376 377
    // 如果这个值为false说明不是workerpoint,就push进去
    if (!marker.workerPoint) {
      this.markers.push(marker);
      map.setZoom("11");
    }
378
    //map.setFitView();
379

380 381 382 383 384 385 386
    function infoClose(e) {
      let options = map.getStatus();
      options.scrollWheel = true;
      map.setStatus(options);
      //infoWindow.close(map, e.target.getPosition());
    }

387
    // function infoOpen(e) {}
388

389 390
    return marker;
  }
391
  // 值班人员
392 393 394 395
  wokerManOpen = e => {
    this.markerType = e.target.markerType;
    e.target.content = this.getMarketContent(e.target.data);
    e.target.infoWindow.setContent(e.target.content);
纪泽龙's avatar
纪泽龙 committed
396 397 398 399
    e.target.infoWindow.setOffset(new AMap.Pixel(24, -38));
    e.target.infoWindow.open(map, e.target.getExtData().pos);
    console.log("e.target.getPosition()", e.target.getExtData().pos);
    console.log("offset", e.target.infoWindow.getOffset());
400 401 402 403 404
    this.boxCollision(e.target.infoWindow.dom);
    // that.addCloneDome(e.target, infoWindow);
    // infoWindow.close();
    this.workerManInfoWindow = e.target.infoWindow;
  };
纪泽龙's avatar
纪泽龙 committed
405
  // 隐患
纪泽龙's avatar
纪泽龙 committed
406 407 408 409 410 411 412 413
  troubleOpen = e => {
    this.markerType = e.target.markerType;
    e.target.content = this.getMarketContent(e.target.data);
    e.target.infoWindow.setContent(e.target.content);
    e.target.infoWindow.open(map, e.target.getPosition());
    this.boxCollision(e.target.infoWindow.dom);
    this.workerManInfoWindow = e.target.infoWindow;
  };
414

纪泽龙's avatar
纪泽龙 committed
415
  // 鼠标移入设备时候实行的函数
416 417 418 419 420 421 422
  infoOpen = e => {
    if (e.target.getExtData().alarmState == 1) {
      if (e.target.getExtData().deviceType == 4) {
        this.markerType = "7";
      } else if (e.target.getExtData().deviceType <= 3) {
        this.markerType = +e.target.getExtData().deviceType + 1 + "";
      }
纪泽龙's avatar
纪泽龙 committed
423
      // console.log("this.markerType", this.markerType);
424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445
      // 警告状态这样就要换infowindow
      e.target.content = this.getMarketContent(
        e.target.getExtData(),
        markerInfoWindowWarn
      );
    } else {
      // 初始化为1的时候是没有的,所以需要判断一下
      // that.markerType =
      //   e.target.getExtData().deviceType + "" == 1
      //     ? "2"
      //     : e.target.getExtData().deviceType + "";
      // 上图状态跟后台状态不统一,所以需要判断一下
      if (e.target.getExtData().deviceType == 4) {
        this.markerType = "7";
      } else if (e.target.getExtData().deviceType <= 3) {
        this.markerType = +e.target.getExtData().deviceType + 1 + "";
      }
      console.log("this.markerType");
      e.target.content = this.getMarketContent(
        e.target.getExtData(),
        markerInfoWindow
      );
446
    }
纪泽龙's avatar
纪泽龙 committed
447

448 449 450 451 452
    let options = map.getStatus();
    options.scrollWheel = false;
    map.setStatus(options);
    e.target.infoWindow.setContent(e.target.content);
    e.target.infoWindow.open(map, e.target.getPosition());
453

454 455 456 457 458 459 460
    // 检测是否碰到底部的bottomData
    this.boxCollision(e.target.infoWindow.dom);
    // that.addCloneDome(e.target, infoWindow);
    // infoWindow.close();

    this.markerInfoWindow = e.target.infoWindow;
  };
461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482
  /**
   * marker添加拖拽事件
   */
  addMarkerDragg() {
    for (var i = 0; i < this.markers.length; i++) {
      this.markers[i].setDraggable(true);
    }
  }
  /**
   * marker移除拖拽事件
   */
  removeMarkerDragg() {
    for (var i = 0; i < this.markers.length; i++) {
      this.markers[i].setDraggable(false);
    }
  }

  /**
   * 添加marker信息
   * @param data
   * @returns {string}
   */
纪泽龙's avatar
纪泽龙 committed
483
  getMarketContent(Data, markerInfoWindow) {
484
    let data = { ...Data };
纪泽龙's avatar
纪泽龙 committed
485
    data.class = this;
纪泽龙's avatar
纪泽龙 committed
486
    // console.log("this.markerType", this.markerType);
487 488 489 490 491
    switch (this.markerType) {
      case DEVICE_TYPE.REGEULATORBOX: {
        const dom = createPop(markerInfoWindow, {
          title: "调压箱",
          data: data,
492
          map: map
493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527
        });
        const html = dom.$el;
        dom.remove();
        return html;
      }
      case DEVICE_TYPE.VALUEWELL: {
        const dom = createPop(markerInfoWindow, {
          title: "阀门井",
          data: data,
          map: map
        });
        const html = dom.$el;
        dom.remove();
        return html;
      }
      case DEVICE_TYPE.FLOWMETER: {
        const dom = createPop(markerInfoWindow, {
          title: "流量计",
          data: data,
          map: map
        });
        const html = dom.$el;
        dom.remove();
        return html;
      }
      case DEVICE_TYPE.PRESSUREGAGE: {
        const dom = createPop(markerInfoWindow, {
          title: "压力表",
          data: data,
          map: map
        });
        const html = dom.$el;
        dom.remove();
        return html;
      }
纪泽龙's avatar
纪泽龙 committed
528 529 530 531 532 533 534 535 536 537
      case DEVICE_TYPE.INSPECTOR: {
        const dom = createPop(workerManInfowindow, {
          title: "值班人员",
          data: data,
          map: map
        });
        const html = dom.$el;
        dom.remove();
        return html;
      }
纪泽龙's avatar
纪泽龙 committed
538 539 540 541 542 543 544 545 546 547 548
      //值班人员的轨迹的点
      case DEVICE_TYPE.SMALLINSPECTOR: {
        const dom = createPop(workerManInfowindow, {
          title: "值班人员",
          data: data,
          map: map
        });
        const html = dom.$el;
        dom.remove();
        return html;
      }
549
      case DEVICE_TYPE.TROUBLE: {
纪泽龙's avatar
纪泽龙 committed
550
        const dom = createPop(troubleInfoWindowWarn, {
551 552 553 554 555 556 557 558
          title: "隐患",
          data: data,
          map: map
        });
        const html = dom.$el;
        dom.remove();
        return html;
      }
559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582
    }
  }

  /**
   * 删除marker
   * @param delType
   * @param deviceId
   */
  deleteMarker(delType, deviceId) {
    if (
      DEVICE_TYPE.REGEULATORBOX == delType ||
      DEVICE_TYPE.VALUEWELL == delType ||
      DEVICE_TYPE.FLOWMETER == delType ||
      DEVICE_TYPE.PRESSUREGAGE == delType
    ) {
      delDeviceInfo(deviceId);
    }
  }

  /**
   * 设置设备图标
   * @param marker
   */
  setMarkerIcon(marker) {
纪泽龙's avatar
纪泽龙 committed
583
    console.log(this.markerType);
584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611
    switch (this.markerType) {
      case DEVICE_TYPE.REGEULATORBOX: {
        let icon = new AMap.Icon({
          //size: new AMap.Size(51, 23),
          image: require("../assets/images/tiaoyaxiang.png")
        });
        marker.setIcon(icon);
        break;
      }
      case DEVICE_TYPE.VALUEWELL: {
        let icon = new AMap.Icon({
          //size: new AMap.Size(51, 23),
          image: require("../assets/images/famenjing.png")
        });
        marker.setIcon(icon);
        break;
      }
      case DEVICE_TYPE.FLOWMETER: {
        let icon = new AMap.Icon({
          //size: new AMap.Size(51, 23),
          image: require("../assets/images/liuliangji.png")
        });
        marker.setIcon(icon);
        break;
      }
      case DEVICE_TYPE.DUTYPERSON: {
        let icon = new AMap.Icon({
          //size: new AMap.Size(51, 23),
612
          image: require("../assets/images/zhibanrenyuan.png")
613 614 615 616 617 618 619
        });
        marker.setIcon(icon);
        break;
      }
      case DEVICE_TYPE.WORKORDER: {
        let icon = new AMap.Icon({
          //size: new AMap.Size(51, 23),
耿迪迪's avatar
耿迪迪 committed
620
          image: require("../assets/images/zhibanrenyuan.png")
621 622 623 624 625 626 627 628 629 630 631 632
        });
        marker.setIcon(icon);
        break;
      }
      case DEVICE_TYPE.PRESSUREGAGE: {
        let icon = new AMap.Icon({
          //size: new AMap.Size(51, 23),
          image: require("../assets/images/yalibiao.png")
        });
        marker.setIcon(icon);
        break;
      }
633 634 635
      case DEVICE_TYPE.INSPECTOR: {
        let icon = new AMap.Icon({
          //size: new AMap.Size(51, 23),
纪泽龙's avatar
纪泽龙 committed
636
          image: require("../assets/images/zhibanrenyuan.jpg")
637 638 639 640
        });
        marker.setIcon(icon);
        break;
      }
纪泽龙's avatar
纪泽龙 committed
641 642 643 644 645 646 647
      case DEVICE_TYPE.SMALLINSPECTOR: {
        let icon = new AMap.Icon({
          opacity: 0.1,
          image: require("../assets/images/zhibanrenyuan.png")
        });
        marker.workerPoint = true;
        marker.setIcon(icon);
648 649 650 651 652 653 654 655 656
        break;
      }
      //隐患
      case DEVICE_TYPE.TROUBLE: {
        let icon = new AMap.Icon({
          opacity: 0.1,
          image: require("../assets/images/trouble.png")
        });
        marker.setIcon(icon);
纪泽龙's avatar
纪泽龙 committed
657 658
        break;
      }
659 660
    }
  }
纪泽龙's avatar
纪泽龙 committed
661
  changeMarkIcon(marker, iconUrl) {
纪泽龙's avatar
纪泽龙 committed
662 663 664 665 666 667
    let icon = new AMap.Icon({
      opacity: 0.1,
      image: iconUrl
    });
    marker.setIcon(icon);
  }
纪泽龙's avatar
纪泽龙 committed
668 669 670 671 672 673 674 675 676 677 678 679
  workerManView(options) {
    // const {} =options;
    const notice = createPop(workerManView, {
      // 数据
      // lineData: options.lineData,
      // lnglatsArr:options.lnglatsArr,
      // pipeLength:options.pipeLength,
      // //线是新线还是老线
      // lineType: options.lineType,
      // target: options.obj,
      ...options,
      //把当前对象当作that传进去
纪泽龙's avatar
纪泽龙 committed
680
      gaodeMap: this
纪泽龙's avatar
纪泽龙 committed
681 682 683 684
      // lineOkCallBack: this.lineOkCallBack
    });
    notice.show();
  }
纪泽龙's avatar
纪泽龙 committed
685
  //
纪泽龙's avatar
纪泽龙 committed
686
  trackBack(marker, arr, data) {
纪泽龙's avatar
纪泽龙 committed
687
    // 值班人员轨迹回放
纪泽龙's avatar
纪泽龙 committed
688
    AMap.plugin("AMap.MoveAnimation", () => {
纪泽龙's avatar
纪泽龙 committed
689
      let lineArr = arr;
纪泽龙's avatar
纪泽龙 committed
690 691
      // 各种属性清空
      this.workerManAttrRemove(marker);
纪泽龙's avatar
纪泽龙 committed
692 693
      let icon = new AMap.Icon({
        //size: new AMap.Size(51, 23),
纪泽龙's avatar
纪泽龙 committed
694
        opacity: 0.1,
纪泽龙's avatar
纪泽龙 committed
695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716
        image: require("../assets/images/zhibanrenyuan.png")
      });
      marker.moveMarker = new AMap.Marker({
        map: map,
        position: lineArr[0],
        icon,
        offset: new AMap.Pixel(-13, -26)
      });

      marker.polyline = new AMap.Polyline({
        map: map,
        path: lineArr,
        showDir: true,
        strokeColor: "#28F", //线颜色
        // strokeOpacity: 1,     //线透明度
        strokeWeight: 6 //线宽
        // strokeStyle: "solid"  //线样式
      });

      marker.passedPolyline = new AMap.Polyline({
        map: map,
        strokeColor: "#AF5", //线颜色
纪泽龙's avatar
纪泽龙 committed
717
        cursor: "pointer",
纪泽龙's avatar
纪泽龙 committed
718 719 720
        strokeWeight: 6 //线宽
      });

纪泽龙's avatar
纪泽龙 committed
721
      // removeLineInfoWindow
纪泽龙's avatar
纪泽龙 committed
722

纪泽龙's avatar
纪泽龙 committed
723
      marker.passedPolyline.on("mousedown", e => {
纪泽龙's avatar
纪泽龙 committed
724
        const dom = createPop(removeLineInfoWindow, {
纪泽龙's avatar
纪泽龙 committed
725 726
          map: this,
          marker
纪泽龙's avatar
纪泽龙 committed
727 728 729
        });
        marker.infoWindow = new AMap.InfoWindow({
          isCustom: true,
纪泽龙's avatar
纪泽龙 committed
730
          autoMove: true,
纪泽龙's avatar
纪泽龙 committed
731 732 733 734 735
          content: dom.$el,
          //信息船体偏移量
          // offset: new AMap.Pixel(20, 20),
          anchor: "left-top"
        });
纪泽龙's avatar
纪泽龙 committed
736
        marker.infoWindow.setOffset(new AMap.Pixel(10, -20));
纪泽龙's avatar
纪泽龙 committed
737 738 739 740 741
        marker.infoWindow.open(map, e.lnglat);
        // infoWindow.on("mousedown",(e)=>{
        //   e.stopPropagation();

        // })
纪泽龙's avatar
纪泽龙 committed
742
        this.markerPassedPolylineInfoWindow = marker.infoWindow;
纪泽龙's avatar
纪泽龙 committed
743 744
      });

纪泽龙's avatar
纪泽龙 committed
745 746 747
      marker.moveMarker.on("moving", function(e) {
        marker.passedPolyline.setPath(e.passedPath);
      });
纪泽龙's avatar
纪泽龙 committed
748 749 750
      // 刚开始的时候要立个点
      let workPoint = this.addMarker(DEVICE_TYPE.SMALLINSPECTOR, data[0]);
      marker.pointArr.push(workPoint);
纪泽龙's avatar
纪泽龙 committed
751
      marker.moveMarker.on("moveend", e => {
纪泽龙's avatar
纪泽龙 committed
752 753 754 755 756 757 758
        // 如果不是最后一个点,就创建一个新的worderpoint,如果是就不创建,并且把自身删除
        if (e.index == lineArr.length - 1) {
          map.remove(marker.moveMarker);
        } else {
          workPoint = this.addMarker(DEVICE_TYPE.SMALLINSPECTOR, data[e.index]);
          marker.pointArr.push(workPoint);
        }
纪泽龙's avatar
纪泽龙 committed
759 760
      });
      marker.moveMarker.on("moveAlong", () => {
纪泽龙's avatar
纪泽龙 committed
761
        console.log("moveAlong", e);
纪泽龙's avatar
纪泽龙 committed
762 763 764 765 766 767 768 769 770 771
      });
      marker.moveMarker.moveAlong(lineArr, {
        // 每一段的时长
        duration: 1200,
        // JSAPI2.0 是否延道路自动设置角度在 moveAlong 里设置
        autoRotation: false
      });
      // map.setFitView();
    });
  }
纪泽龙's avatar
纪泽龙 committed
772 773 774 775 776 777 778 779 780 781 782
  workerManAttrRemove(marker) {
    marker.moveMarker && map.remove(marker.moveMarker);
    marker.polyline && map.remove(marker.polyline);
    marker.passedPolyline && map.remove(marker.passedPolyline);
    if (marker.pointArr?.length > 0) {
      marker.pointArr.forEach(item => {
        map.remove(item);
      });
    }
    marker.pointArr = [];
  }
纪泽龙's avatar
纪泽龙 committed
783

784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799
  /**
   * 添加折线
   * @param path
   */
  addPolyline(arr) {
    // this` polyLines = [];
    //console.log("包装的数组", arr);
    for (let i = 0; i < arr.length; i++) {
      const item = arr[i];
      let { coordinates } = item;
      // //console.log("coordinates",coordinates)
      // let path = coordinates ? getArray(coordinates) :[];
      // 字符串转二维数组
      let path = coordinates ? eval(coordinates) : [];
      let polyline = new AMap.Polyline({
        path,
800
        strokeColor: "#2EE7E7",
801 802 803
        strokeWeight: 4,
        strokeOpacity: 0.9,
        zIndex: 50,
纪泽龙's avatar
纪泽龙 committed
804
        bubble: false,
805
        geodesic: true,
纪泽龙's avatar
纪泽龙 committed
806
        cursor: "pointer",
807 808 809 810
        extData: {
          type: "line",
          //当前line状态 0:正常状态 1:正在编辑状态
          isState: 0,
纪泽龙's avatar
纪泽龙 committed
811 812
          lineData: item,
          class: this
813 814 815 816 817 818 819
        }
      });

      this.polyLines.push(polyline);
      // 信息窗体
      this.newLineAddEvent(polyline);
      //添加事件
820
      polyline.on("mousedown", this.polylineMouseOver);
纪泽龙's avatar
纪泽龙 committed
821 822 823
      polyline.on("mouseover", () => {
        polyline.setOptions({ strokeColor: "#F7FE38" });
      });
824
      polyline.on("mouseout", e => {
纪泽龙's avatar
纪泽龙 committed
825
        // console.log("polyline.getExtData().lineData.alarmState",polyline.getExtData().lineData.alarmState)
纪泽龙's avatar
纪泽龙 committed
826 827 828 829 830
        if (polyline.getExtData().lineData.alarmState == 1) {
          polyline.setOptions({ strokeColor: "#ff0000" });
        } else {
          polyline.setOptions({ strokeColor: "#2EE7E7" });
        }
831 832 833 834 835 836 837 838
        // infoWindow.close();
      });
      // 计算info的位置
      // function infoPosition() {}
    }
    map.add(this.polyLines);
    // 缩放地图到合适的视野级别
    // map.setFitView();
839
  }
840 841 842 843 844 845 846 847 848 849 850 851 852 853
  // 鼠标移入线条执行
  polylineMouseOver = e => {
    let polyline = e.target;
    if (this.lineType == 1) return;
    // 生成infoWindow
    let infoWindow;
    // 警告状态时
    const item = e.target.getExtData().lineData;
    // console.log("item",item)
    if (e.target.getExtData().lineData.alarmState == 1) {
      infoWindow = this.lineMouseOver(polyline, lineInfoWindowWarn, item);
    } else {
      infoWindow = this.lineMouseOver(polyline, lineInfoWindow, item);
    }
纪泽龙's avatar
纪泽龙 committed
854

855 856 857
    infoWindow.open(map, e.lnglat);
    // 如果是鼠标真正移入,则计算位置,如果不是鼠标真正移入,是人为执行出现infowindow,则不计算位置
    console.log("e.originEvent", e.originEvent);
858
    if (e.originEvent && 0) {
859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907
      // 上方导航的高
      const topBar = 81;
      // 坐标导航的宽
      const leftBar = 100;
      // 屏幕可视区的宽高
      const {
        clientWidth: windowClientWidth,
        clientHeight: windowClientHeight
      } = document.body;
      // 弹出的信息窗口的宽高

      const {
        offsetWidth: infoWindowWidth,
        offsetHeight: infoWindowHeight
      } = infoWindow.dom;
      // 鼠标碰到线后的位置
      const { clientX: mouseClientX, clientY: mouseClientY } = e.originEvent;
      // 鼠标到左边界的距离
      const offsetLeftX = mouseClientX - 100;
      // 鼠标到右边界的距离
      const offsetRightX = windowClientWidth - mouseClientX;
      const offsetTopY = mouseClientY - 81;
      const offsetBottomY = windowClientHeight - mouseClientY;

      const offsetY = mouseClientY - 80 - infoWindowHeight;
      let X = 20,
        Y = -20;
      if (offsetLeftX <= infoWindowWidth) {
        //console.log("靠左了");
        X = 20;
      } else if (offsetRightX <= infoWindowWidth) {
        //console.log("靠右了");
        X = -infoWindowWidth - 20;
      }
      if (offsetTopY <= infoWindowHeight) {
        //console.log("靠上了");
        Y = 20;
      } else if (offsetBottomY <= infoWindowHeight + 81) {
        //console.log("靠下了");
        Y = -infoWindowHeight - 20;
      }
      if (polyline.getExtData().lineData.alarmState == 1) {
        polyline.setOptions({ strokeColor: "#ff0000" });
      } else {
        polyline.setOptions({ strokeColor: "#FF5A67" });
      }
      infoWindow.setOffset(new AMap.Pixel(X, Y));
    } else {
      infoWindow.setOffset(new AMap.Pixel(20, -20));
908 909
      this.polyLinesColorClear(polyline);
      // polyline.setOptions({ strokeColor: "#F7FE38" });
910
    }
911

912 913 914 915
    this.boxCollision(infoWindow.dom);
    this.showInfoWindow = infoWindow;
    // const
  };
纪泽龙's avatar
纪泽龙 committed
916
  // 所有的线的颜色归位,如果是报警的,就红色,不是就蓝色
917
  polyLinesColorClear(polyline) {
纪泽龙's avatar
纪泽龙 committed
918
    this.polyLines.forEach(item => {
919 920 921 922 923 924
      if (item != polyline) {
        if (item.getExtData().lineData.alarmState == 1) {
          item.setOptions({ strokeColor: "#ff0000" });
        } else {
          item.setOptions({ strokeColor: "#2EE7E7" });
        }
纪泽龙's avatar
纪泽龙 committed
925 926 927
      }
    });
  }
928

纪泽龙's avatar
纪泽龙 committed
929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944
  lineMouseOver(polyline, lineInfoWindow, item) {
    let dom = createPop(lineInfoWindow, {
      obj: { a: 123, editorPage: true, ...item, polyline }
    });
    dom.$el.addEventListener("mouseover", () => {
      let options = this.myMap.getStatus();
      options.scrollWheel = false;
      this.myMap.setStatus(options);
    });
    dom.$el.addEventListener("mouseout", () => {
      let options = this.myMap.getStatus();
      options.scrollWheel = true;
      this.myMap.setStatus(options);
    });
    let infoWindow = new AMap.InfoWindow({
      isCustom: true,
945
      autoMove: true,
纪泽龙's avatar
纪泽龙 committed
946 947
      content: dom.$el,
      //信息船体偏移量
948 949
      // offset: new AMap.Pixel(0, 0),
      anchor: "left-topr"
纪泽龙's avatar
纪泽龙 committed
950 951 952 953
    });
    polyline.infoWindow = infoWindow;
    return infoWindow;
  }
954
  // 碰撞检测
纪泽龙's avatar
纪泽龙 committed
955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971
  boxCollision(infowindowDom) {
    // gis地图页面的bottomdata组件
    const {
      RightBototmData: { $el: pageDom }
    } = this.view.$refs;
    let {
      offsetTop: ay,
      offsetLeft: ax,
      offsetWidth: aw,
      offsetHeight: ah
    } = pageDom;
    let {
      y: by,
      x: bx,
      width: bw,
      height: bh
    } = infowindowDom.getBoundingClientRect();
纪泽龙's avatar
纪泽龙 committed
972
    // 如果组件消失了ay回变成0,所以要记录一下,当它为0的时候取记录的值
纪泽龙's avatar
纪泽龙 committed
973 974 975 976
    if (ay != 0) {
      this.ay = ay;
    } else {
      ay = this.ay;
纪泽龙's avatar
纪泽龙 committed
977
    }
纪泽龙's avatar
纪泽龙 committed
978 979 980
    console.log("ay", ay);
    if (by + bh >= ay) {
      console.log("隐藏");
981
      this.view.bottomDataShow = false;
纪泽龙's avatar
纪泽龙 committed
982 983
    } else {
      console.log("显示");
984 985 986
      this.view.bottomDataShow = true;
    }
    // if((by+bh) -ay <0)
987
  }
纪泽龙's avatar
纪泽龙 committed
988 989 990 991 992 993 994 995 996 997 998 999 1000
  // 把map里的in佛window转化成vue里的dom
  addCloneDome(target, infoWindow) {
    target.cloneDom = infoWindow.dom.cloneNode(true);

    target.cloneDom.style.top = infoWindow.dom.offsetTop + 80 + "px";
    target.cloneDom.style.left = infoWindow.dom.offsetLeft + 100 + "px";
    // 先删除之前的,后增加现在的
    this.closeInfoWindow();

    document.body.appendChild(target.cloneDom);
    this.cloneDom = target.cloneDom;
    this.cloneDom.addEventListener("mousedown", e => {
      // e.stopPropagation();
纪泽龙's avatar
纪泽龙 committed
1001
      // console.log("this");
纪泽龙's avatar
纪泽龙 committed
1002
    });
1003

纪泽龙's avatar
纪泽龙 committed
1004 1005 1006 1007 1008 1009 1010 1011
    infoWindow.close();
  }
  closeInfoWindow() {
    this.removeCloneDom();
    this.showInfoWindow && this.showInfoWindow.close();
    // 删除浮动到线上的cloneDom
    this.markerInfoWindow && this.markerInfoWindow.close();
    this.workerManInfoWindow && this.workerManInfoWindow.close();
纪泽龙's avatar
纪泽龙 committed
1012
    // 工人的轨迹线条用的
纪泽龙's avatar
纪泽龙 committed
1013 1014
    this.markerPassedPolylineInfoWindow &&
      this.markerPassedPolylineInfoWindow.close();
纪泽龙's avatar
纪泽龙 committed
1015
  }
纪泽龙's avatar
纪泽龙 committed
1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034
  // infoWindow的拖拽
  infoWindowMove(infoWindow) {
    let disX, disY,dom;
    infoWindow.on("mousedown", e => {
      dom = e.target.dom;
      // const a = dom.offsetTop + 20;
      // dom.style.top = a + "px";
      // console.log(dom.offsetTop);
      // console.log(e.originEvent.clientY);
      // console.log(dom.offsetLeft);
      // console.log(e.originEvent.clientX);
      disX = dom.offsetTop - e.originEvent.clientX;
      disY = dom.offsetLeft - e.originEvent.clientY;
      window.addEventListener("mousemove",(e)=>{

      })
    });

  }
纪泽龙's avatar
纪泽龙 committed
1035
  // 关闭转化到vue的dom
1036
  removeCloneDom() {
纪泽龙's avatar
纪泽龙 committed
1037
    // 线
1038
    this.cloneDom && document.body.removeChild(this.cloneDom);
纪泽龙's avatar
纪泽龙 committed
1039
    // 设备
纪泽龙's avatar
纪泽龙 committed
1040
    // this.markerCloneDom && document.body.removeChild(this.markerCloneDom);
纪泽龙's avatar
纪泽龙 committed
1041
    // 值班人员
纪泽龙's avatar
纪泽龙 committed
1042 1043 1044
    // this.workerManCloneDom && document.body.removeChild(this.workerManCloneDom);

    // that.workerManInfoWindow = infoWindow;
1045
    this.cloneDom = null;
纪泽龙's avatar
纪泽龙 committed
1046 1047 1048
    // 关闭以前的infowindow
    // this.markerCloneDom = null;
    // this.workerManCloneDom = null;
1049
  }
纪泽龙's avatar
纪泽龙 committed
1050
  // 新建line增加编辑以及右键菜单
1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080

  // 创建一条新的线
  createNewLine() {
    map.remove(this.markerOverlays);
    this.mouseTool.polyline({
      // bubbles:false,
      strokeWeight: 4,
      strokeColor: "#80d8ff",
      extData: {
        type: "newLine",
        //当前line状态 0:正常状态 1:正在编辑状态
        isState: 0
      }
      //同Polyline的Option设置
    });
    // 让它不再等于null
    // this.newLineObj={a:123}
  }
  // 创建出来的新线归位,重置,当点击编辑跟删除的时候
  newLineReset() {
    this.lineFlag = false;
    if (this.mouserTool) {
      this.mouseTool.close();
    }
    if (this.newLineObj) {
      this.newLineObj.polyEditor.close();
      map.remove(this.newLineObj);
      this.newLineObj = null;
    }
  }
纪泽龙's avatar
纪泽龙 committed
1081

1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142
  // 新line与老line添加点击事件
  newLineAddEvent(obj) {
    obj.polyEditor = new AMap.PolyEditor(map, obj);
    // obj.polyEditor.on('adjust',(e)=>{
    //   //console.log("addnode")
    // })
    obj.on("mousedown", e => {
      //console.log(e.originEvent);
      //console.log("lineType", this.lineType);
      this.lineFlag = true;
      // 每次点击关闭然后再次激活
      // 如果是新线就关闭
      if (obj.getExtData().type == "newLine") {
        this.mouseTool.close();
      }
      // 删除
      if (this.lineType == 3) {
        this.lineDelete(obj);
        return;
      }
      // 获取当前状态 0普通状态,1是正编辑状态
      const { isState, type } = obj.getExtData();
      // 如果不是新线的时候并且没点编辑,点击是无效的
      if (type != "newLine" && this.lineType != 2) return;
      if (isState == 0) {
        // 如果是0,就打开编辑,变成编辑状态
        obj.polyEditor.open();
        let opstions = obj.getExtData();
        opstions.isState = 1;
        //console.log(opstions);
        obj.setExtData(opstions);
      } else {
        // 经纬度
        const lnglatsArr = obj.getPath().map(item => [item.lng, item.lat]);
        // 管道总长度
        const pipeLength = obj.getLength();
        // 传回来的数据 如果是新管道就是空
        const lineData = type == "newLine" ? {} : obj.getExtData().lineData;
        // const lineData =  obj.getExtData().lineData;
        //console.log("lineData===================>传入组件的数据", lineData);
        this.infoWindowPipelineView({
          target: obj,
          lineType: type,
          lnglatsArr,
          pipeLength,
          lineData
        });
      }
    });
  }
  // 隐藏所有管道
  lineShow(bool) {
    bool
      ? this.polyLines.forEach(item => item.show())
      : this.polyLines.forEach(item => item.hide());
    if (this.newLineObj) {
      bool ? this.newLineObj.show() : this.newLineObj.hide();
    }
  }
  markerShow(type, bool) {
    this.markers.forEach(item => {
纪泽龙's avatar
纪泽龙 committed
1143 1144 1145 1146 1147
      const { deviceType, troubleId } = item.getExtData();

      if (type == 8 && troubleId) {
        bool ? item.show() : item.hide();
      } else if (deviceType == type) {
纪泽龙's avatar
纪泽龙 committed
1148 1149 1150 1151 1152 1153
        // 如果是值班人员,还要隐藏身上的线条以及marker
        if (type == 9) {
          if (bool) {
            item.moveMarker && item.moveMarker.show();
            item.polyline && item.polyline.show();
            item.passedPolyline && item.passedPolyline.show();
纪泽龙's avatar
纪泽龙 committed
1154 1155 1156 1157 1158
            if (item.pointArr?.length > 0) {
              item.pointArr.forEach(item => {
                item.show();
              });
            }
纪泽龙's avatar
纪泽龙 committed
1159 1160 1161 1162
          } else {
            item.moveMarker && item.moveMarker.hide();
            item.polyline && item.polyline.hide();
            item.passedPolyline && item.passedPolyline.hide();
纪泽龙's avatar
纪泽龙 committed
1163 1164 1165 1166 1167
            if (item.pointArr?.length > 0) {
              item.pointArr.forEach(item => {
                item.hide();
              });
            }
纪泽龙's avatar
纪泽龙 committed
1168 1169
          }
        }
1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224
        bool ? item.show() : item.hide();
      }
      // //console.log("deviceType",deviceType);
    });
  }
  lineDelete(obj) {
    const {
      lineData: { pipeName }
    } = obj.getExtData();
    vue
      .$confirm(`是否删除名称为"${pipeName}"的管道 ?`, "提示", {
        // confirmButtonText: "确定",
        // cancelButtonText: "取消",
        type: "warning"
        // center: true
      })
      .then(() => {
        const {
          lineData: { pipeId }
        } = obj.getExtData();
        //console.log(pipeId);
        delPipe(pipeId).then(res => {
          const index = this.polyLines.indexOf(obj);
          // 如果是老线,就要线删除原来的,然后重新包装一遍
          if (index >= 0) {
            this.polyLines.splice(index, 1);
            map.remove(obj);
          }
          vue.$message({
            type: "success",
            offset: 100,
            // center:true,
            message: "删除成功!"
          });
          // 关闭当前线条的infowindow
          // this.closeLineInfoWindow();
        });
      })
      .catch(() => {
        vue.$message({
          type: "info",
          // center:true,
          offset: 100,
          message: "已取消删除"
        });
      });
  }
  // 关闭所有已经上传的线的编辑状态
  linePolyEditorAllClose() {
    this.polyLines.forEach(item => {
      item.polyEditor.close();
      let opstions = item.getExtData();
      opstions.isState = 0;
      item.setExtData(opstions);
      let attr = item.getOptions();
1225
      attr.strokeColor = "#2EE7E7";
1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262
      item.setOptions(attr);
    });
  }

  // 传进组件的会调 点确认的时候调
  lineOkCallBack(target, data) {
    target.polyEditor.close();
    const index = this.polyLines.indexOf(target);
    // 如果是老线,就要线删除原来的,然后重新包装一遍
    if (index >= 0) {
      this.polyLines.splice(index, 1);
    }
    //console.log("data999-=================>传回来的data", data);
    this.addPolyline([data]);
    map.remove(target);
    // //console.log('polyLines',this.polyLines)
  }
  // 上传服务器用的组件

  infoWindowPipelineView(options) {
    // const {} =options;
    const notice = createPop(pipelineView, {
      title: "管道",
      // 数据
      // lineData: options.lineData,
      // lnglatsArr:options.lnglatsArr,
      // pipeLength:options.pipeLength,
      // //线是新线还是老线
      // lineType: options.lineType,
      // target: options.obj,
      ...options,
      //把当前对象当作that传进去
      gaodeMap: this,
      lineOkCallBack: this.lineOkCallBack
    });
    notice.show();
  }
纪泽龙's avatar
纪泽龙 committed
1263

1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447
  /**
   * 添加鼠标事件
   */
  addMouseTool() {
    this.mouseTool = new AMap.MouseTool(map);
    //监听draw事件可获取画好的覆盖物
    this.overlays = [];
    let that = this;
    this.markerOverlays = [];
    this.mouseTool.on("draw", function(e) {
      if (e.obj.getExtData().type != "newLine") {
        map.remove(that.markerOverlays);
        const device = that.createInfowindow("新增");
        device.map = map;
        device.obj = e.obj;
        device.gaoMap = that;
        e.obj.on("click", function(aa) {
          let postion = aa.target._position;
          //兼容拖拽后单击事件,拖拽后点击事件返回位置为数组
          if (postion instanceof Array) {
            device.form.longitude = postion[0];
            device.form.latitude = postion[1];
          } else {
            device.form.longitude = postion.lng;
            device.form.latitude = postion.lat;
          }

          device.show();
        });
        e.obj.on("mouseover", function() {
          that.mouseTool.close();
        });

        e.obj.on("mouseout", function() {
          that.draw(that.deviceType);
        });

        that.markerOverlays.push(e.obj);
      }

      if (e.obj && e.obj.getExtData().type == "newLine") {
        //console.log("挂上事件");
        that.newLineAddEvent(e.obj);
        // 记录这条线
        // //console.log(e.obj.getPath().length)
        // 如果只有一个点,并没有连成线的时候就不close 大于一个点的时候才执行clse
        //console.log(that.lineType)
        if (e.obj.getPath().length > 1) {
          that.newLineObj = e.obj;
          that.mouseTool.close();
        } else {
          // that.newLineObj = null;
        }
        // 关闭
        // 创建一条新线,然后在点地图的时候删除原来的旧线
        // that.createNewLine();

        // 右键菜单
        // that.addEditorAndMenu(e.obj)
      }

      // if(e.obj.getExtData().type=="line"){
      //   return;
      // }
      //that.mouseTool.close();
      that.overlays.push(e.obj);
    });
  }

  /**
   * 创建弹框事件
   */
  createInfowindow(val) {
    switch (this.deviceType) {
      case DEVICE_TYPE.PIPEPLINE: {
        break;
      }
      case DEVICE_TYPE.REGEULATORBOX: {
        return createPop(regulatorBox, {
          title: val + "调压箱"
        });
      }
      case DEVICE_TYPE.VALUEWELL: {
        return createPop(valveWell, {
          title: val + "阀门井"
        });
      }
      case DEVICE_TYPE.FLOWMETER: {
        return createPop(flowMeter, {
          title: val + "流量计"
        });
      }
      case DEVICE_TYPE.PRESSUREGAGE: {
        return createPop(flowMeter, {
          title: val + "压力表"
        });
      }
    }
  }

  /**
   * 鼠标画图事件
   * @param deviceType 设备类型
   */
  draw(deviceType) {
    let that = this;
    that.deviceType = deviceType;
    if (
      DEVICE_TYPE.REGEULATORBOX == deviceType ||
      DEVICE_TYPE.VALUEWELL == deviceType ||
      DEVICE_TYPE.FLOWMETER == deviceType ||
      DEVICE_TYPE.PRESSUREGAGE == deviceType
    ) {
      that.mouseTool.marker({
        draggable: true
      });
    }
    if (DEVICE_TYPE.PIPEPLINE == deviceType) {
      that.mouseTool.polyline({
        strokeWeight: 9,
        strokeColor: "#80d8ff"
        //同Polyline的Option设置
      });
    }
  }

  /**
   * 添加地图控件
   */
  addMapControl() {
    AMap.plugin(
      [
        "AMap.ToolBar",
        "AMap.Scale",
        "AMap.HawkEye",
        "AMap.MapType",
        "AMap.Geolocation"
      ],
      function() {
        // 在图面添加工具条控件,工具条控件集成了缩放、平移、定位等功能按钮在内的组合控件
        //map.addControl(new AMap.ToolBar());

        // 在图面添加比例尺控件,展示地图在当前层级和纬度下的比例尺
        map.addControl(new AMap.Scale());

        // 在图面添加鹰眼控件,在地图右下角显示地图的缩略图
        map.addControl(new AMap.HawkEye({ isOpen: true }));

        // 在图面添加类别切换控件,实现默认图层与卫星图、实施交通图层之间切换的控制
        map.addControl(
          new AMap.MapType({ position: { top: "10px", left: "100px" } })
        );

        // 在图面添加定位控件,用来获取和展示用户主机所在的经纬度位置
        // map.addControl(new AMap.Geolocation());
      }
    );
  }

  searchTips(inputId) {
    let that = this;
    AMap.plugin(["AMap.AutoComplete", "AMap.PlaceSearch"], function() {
      //输入提示
      // var autoOptions = {
      //   input: inputId
      // };
      // let auto = new AMap.AutoComplete(autoOptions);
      that.placeSearch = new AMap.PlaceSearch({
        map: map
      });
      //构造地点查询类
      // auto.on("select", function(e) {
      //   that.searchSelectAdcode = e.poi.adcode;
      //   that.searchSelectName = e.poi.name;
      // });
    });
  }

  closeAddMarker() {
    this.mouseTool.close();
    map.remove(this.markerOverlays);
  }
}
export default gaodeMap;