gaodeMapView.js 40.3 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

57 58
  onceFlag = false;

59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96
  //构造函数中设置中央点默认值
  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;

    this.myMap.on("click", e => {
      // if (this.lineType !=1 || this.lineFlag) return;
      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(() => {});
      }
纪泽龙's avatar
纪泽龙 committed
97

98 99
      // //console.log("抬起来了");
    });
纪泽龙's avatar
纪泽龙 committed
100 101 102 103 104 105 106 107 108 109
    // 地图开始平移删除infowindow
    this.myMap.on("movestart", () => {
      // console.log("地图平移");
      this.closeInfoWindow();
    });
    // 地图开始缩放删除infowindow
    this.myMap.on("zoomstart", () => {
      // console.log("缩放开始")
      this.closeInfoWindow();
    });
110 111 112 113 114
    this.myMap.on("moveend", () => {
      if (this.handleInfoWindowOpenFunc) {
        this.handleInfoWindowOpenFunc();
        this.handleInfoWindowOpenFunc = null;
      }
115 116 117 118 119

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

124 125 126 127
      // 每次地图移动结束,就让地图可以缩放
      let options = this.myMap.getStatus();
      options.scrollWheel = true;
      this.myMap.setStatus(options);
128
    });
129 130
    this.districtBoundaries();
  }
131
  // 地图移动结束
132 133 134 135 136 137 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

  /**
   * 获取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
          });
        }
      }
    });
  }
185 186 187 188
  // 地图中点平移
  panTo(lnglat) {
    this.myMap.panTo(lnglat);
  }
189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217
  /**
   * 添加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);
    });
    let marker = new AMap.Marker({
      position: [data.longitude, data.latitude],
      map: map,
      offset: new AMap.Pixel(0, 5)
    });
    this.setMarkerIcon(marker);
纪泽龙's avatar
纪泽龙 committed
218

纪泽龙's avatar
纪泽龙 committed
219
    // 值班人员的marker
纪泽龙's avatar
纪泽龙 committed
220 221 222 223
    if (
      DEVICE_TYPE.INSPECTOR == markerType ||
      DEVICE_TYPE.SMALLINSPECTOR == markerType
    ) {
纪泽龙's avatar
纪泽龙 committed
224
      // 存值
纪泽龙's avatar
纪泽龙 committed
225 226 227 228 229 230 231 232 233 234 235 236
      const {
        createTime,
        locationId,
        longitude,
        latitude,
        userId,
        type
      } = data;
      marker.setExtData({
        createTime,
        locationId,
        pos: [longitude, latitude],
纪泽龙's avatar
纪泽龙 committed
237 238
        deviceType: type,
        userId
纪泽龙's avatar
纪泽龙 committed
239
      });
纪泽龙's avatar
纪泽龙 committed
240 241
      // 值班人员的事件

纪泽龙's avatar
纪泽龙 committed
242 243 244 245 246 247
      // marker.on("click", e => {
      //   console.log(e);
      //   console.log(e.target.getExtData());
      //   // console.log(Card)
      //   // e.target.content = this.getMarketContent(data);
      // });
纪泽龙's avatar
纪泽龙 committed
248 249 250 251 252 253 254 255 256 257
      // 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;
      // });
258
      marker.markerType = markerType;
纪泽龙's avatar
纪泽龙 committed
259
      marker.data = data;
260
      marker.infoWindow = infoWindow;
纪泽龙's avatar
纪泽龙 committed
261
      marker.on("mouseover", this.wokerManOpen);
纪泽龙's avatar
纪泽龙 committed
262
      marker.on("mousedown", e => {
纪泽龙's avatar
纪泽龙 committed
263
        // console.log(data);
纪泽龙's avatar
纪泽龙 committed
264
        that.closeInfoWindow();
纪泽龙's avatar
纪泽龙 committed
265
        if (marker.workerPoint) return;
纪泽龙's avatar
纪泽龙 committed
266 267 268 269 270
        that.workerManView({
          title: "值班人员轨迹回放",
          target: marker,
          userId
        });
纪泽龙's avatar
纪泽龙 committed
271
      });
纪泽龙's avatar
纪泽龙 committed
272 273 274 275
      // workerPoint不加入数组
      if (!marker.workerPoint) {
        this.workerManMarkArr.push(marker);
      }
纪泽龙's avatar
纪泽龙 committed
276
    }
277
    // 隐患
278
    if (DEVICE_TYPE.TROUBLE == markerType) {
纪泽龙's avatar
纪泽龙 committed
279 280 281
      marker.markerType = markerType;
      marker.data = data;
      marker.infoWindow = infoWindow;
纪泽龙's avatar
纪泽龙 committed
282 283
      marker.on("mouseover", this.troubleOpen);
      marker.setExtData(data);
纪泽龙's avatar
纪泽龙 committed
284
      this.troubles.push(marker);
285 286
    }

纪泽龙's avatar
纪泽龙 committed
287
    if (
纪泽龙's avatar
纪泽龙 committed
288
      DEVICE_TYPE.WORKORDER != markerType &&
纪泽龙's avatar
纪泽龙 committed
289
      DEVICE_TYPE.INSPECTOR != markerType &&
290
      DEVICE_TYPE.SMALLINSPECTOR != markerType &&
291
      DEVICE_TYPE.TROUBLE != markerType
纪泽龙's avatar
纪泽龙 committed
292
    ) {
纪泽龙's avatar
纪泽龙 committed
293
      // marker.content = this.getMarketContent(data, markerInfoWindow);
294 295
      marker.infoWindow = infoWindow;
      marker.on("mouseover", that.infoOpen);
296 297 298 299 300 301 302 303 304 305 306 307 308 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
      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
360 361 362 363 364
    // 如果这个值为false说明不是workerpoint,就push进去
    if (!marker.workerPoint) {
      this.markers.push(marker);
      map.setZoom("11");
    }
365
    //map.setFitView();
366

367 368 369 370 371 372 373
    function infoClose(e) {
      let options = map.getStatus();
      options.scrollWheel = true;
      map.setStatus(options);
      //infoWindow.close(map, e.target.getPosition());
    }

374
    // function infoOpen(e) {}
375

376 377
    return marker;
  }
378
  // 值班人员
379 380 381 382 383 384 385 386 387 388 389
  wokerManOpen = 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());
    console.log("e.target.getPosition()", e.target.getExtData());
    this.boxCollision(e.target.infoWindow.dom);
    // that.addCloneDome(e.target, infoWindow);
    // infoWindow.close();
    this.workerManInfoWindow = e.target.infoWindow;
  };
纪泽龙's avatar
纪泽龙 committed
390
  // 隐患
纪泽龙's avatar
纪泽龙 committed
391 392 393 394 395 396 397 398
  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;
  };
399

纪泽龙's avatar
纪泽龙 committed
400
  // 鼠标移入设备时候实行的函数
401 402 403 404 405 406 407
  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
408
      // console.log("this.markerType", this.markerType);
409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430
      // 警告状态这样就要换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
      );
431
    }
纪泽龙's avatar
纪泽龙 committed
432

433 434 435 436 437
    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());
438

439 440 441 442 443 444 445
    // 检测是否碰到底部的bottomData
    this.boxCollision(e.target.infoWindow.dom);
    // that.addCloneDome(e.target, infoWindow);
    // infoWindow.close();

    this.markerInfoWindow = e.target.infoWindow;
  };
446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467
  /**
   * 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
468
  getMarketContent(Data, markerInfoWindow) {
469
    let data = { ...Data };
纪泽龙's avatar
纪泽龙 committed
470
    data.class = this;
纪泽龙's avatar
纪泽龙 committed
471
    // console.log("this.markerType", this.markerType);
472 473 474 475 476
    switch (this.markerType) {
      case DEVICE_TYPE.REGEULATORBOX: {
        const dom = createPop(markerInfoWindow, {
          title: "调压箱",
          data: data,
477
          map: map
478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512
        });
        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
513 514 515 516 517 518 519 520 521 522
      case DEVICE_TYPE.INSPECTOR: {
        const dom = createPop(workerManInfowindow, {
          title: "值班人员",
          data: data,
          map: map
        });
        const html = dom.$el;
        dom.remove();
        return html;
      }
纪泽龙's avatar
纪泽龙 committed
523 524 525 526 527 528 529 530 531 532 533
      //值班人员的轨迹的点
      case DEVICE_TYPE.SMALLINSPECTOR: {
        const dom = createPop(workerManInfowindow, {
          title: "值班人员",
          data: data,
          map: map
        });
        const html = dom.$el;
        dom.remove();
        return html;
      }
534
      case DEVICE_TYPE.TROUBLE: {
纪泽龙's avatar
纪泽龙 committed
535
        const dom = createPop(troubleInfoWindowWarn, {
536 537 538 539 540 541 542 543
          title: "隐患",
          data: data,
          map: map
        });
        const html = dom.$el;
        dom.remove();
        return html;
      }
544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567
    }
  }

  /**
   * 删除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
568
    console.log(this.markerType);
569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596
    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),
597
          image: require("../assets/images/zhibanrenyuan.png")
598 599 600 601 602 603 604
        });
        marker.setIcon(icon);
        break;
      }
      case DEVICE_TYPE.WORKORDER: {
        let icon = new AMap.Icon({
          //size: new AMap.Size(51, 23),
耿迪迪's avatar
耿迪迪 committed
605
          image: require("../assets/images/zhibanrenyuan.png")
606 607 608 609 610 611 612 613 614 615 616 617
        });
        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;
      }
618 619 620
      case DEVICE_TYPE.INSPECTOR: {
        let icon = new AMap.Icon({
          //size: new AMap.Size(51, 23),
纪泽龙's avatar
纪泽龙 committed
621
          image: require("../assets/images/zhibanrenyuan.jpg")
622 623 624 625
        });
        marker.setIcon(icon);
        break;
      }
纪泽龙's avatar
纪泽龙 committed
626 627 628 629 630 631 632
      case DEVICE_TYPE.SMALLINSPECTOR: {
        let icon = new AMap.Icon({
          opacity: 0.1,
          image: require("../assets/images/zhibanrenyuan.png")
        });
        marker.workerPoint = true;
        marker.setIcon(icon);
633 634 635 636 637 638 639 640 641
        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
642 643
        break;
      }
644 645
    }
  }
纪泽龙's avatar
纪泽龙 committed
646
  changeMarkIcon(marker, iconUrl) {
纪泽龙's avatar
纪泽龙 committed
647 648 649 650 651 652
    let icon = new AMap.Icon({
      opacity: 0.1,
      image: iconUrl
    });
    marker.setIcon(icon);
  }
纪泽龙's avatar
纪泽龙 committed
653 654 655 656 657 658 659 660 661 662 663 664
  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
665
      gaodeMap: this
纪泽龙's avatar
纪泽龙 committed
666 667 668 669
      // lineOkCallBack: this.lineOkCallBack
    });
    notice.show();
  }
纪泽龙's avatar
纪泽龙 committed
670
  //
纪泽龙's avatar
纪泽龙 committed
671
  trackBack(marker, arr, data) {
纪泽龙's avatar
纪泽龙 committed
672
    // 值班人员轨迹回放
纪泽龙's avatar
纪泽龙 committed
673
    AMap.plugin("AMap.MoveAnimation", () => {
纪泽龙's avatar
纪泽龙 committed
674
      let lineArr = arr;
纪泽龙's avatar
纪泽龙 committed
675 676
      // 各种属性清空
      this.workerManAttrRemove(marker);
纪泽龙's avatar
纪泽龙 committed
677 678
      let icon = new AMap.Icon({
        //size: new AMap.Size(51, 23),
纪泽龙's avatar
纪泽龙 committed
679
        opacity: 0.1,
纪泽龙's avatar
纪泽龙 committed
680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704
        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", //线颜色
        strokeWeight: 6 //线宽
      });

纪泽龙's avatar
纪泽龙 committed
705
      // removeLineInfoWindow
纪泽龙's avatar
纪泽龙 committed
706

纪泽龙's avatar
纪泽龙 committed
707 708
      marker.passedPolyline.on("mouseover", e => {
        const dom = createPop(removeLineInfoWindow, {
纪泽龙's avatar
纪泽龙 committed
709 710
          map: this,
          marker
纪泽龙's avatar
纪泽龙 committed
711 712 713
        });
        marker.infoWindow = new AMap.InfoWindow({
          isCustom: true,
纪泽龙's avatar
纪泽龙 committed
714
          autoMove: true,
纪泽龙's avatar
纪泽龙 committed
715 716 717 718 719 720 721 722 723 724
          content: dom.$el,
          //信息船体偏移量
          // offset: new AMap.Pixel(20, 20),
          anchor: "left-top"
        });
        marker.infoWindow.open(map, e.lnglat);
        // infoWindow.on("mousedown",(e)=>{
        //   e.stopPropagation();

        // })
纪泽龙's avatar
纪泽龙 committed
725
        this.markerPassedPolylineInfoWindow = marker.infoWindow;
纪泽龙's avatar
纪泽龙 committed
726 727 728
        console.log(e.lnglat);
      });

纪泽龙's avatar
纪泽龙 committed
729 730 731
      marker.moveMarker.on("moving", function(e) {
        marker.passedPolyline.setPath(e.passedPath);
      });
纪泽龙's avatar
纪泽龙 committed
732 733 734
      // 刚开始的时候要立个点
      let workPoint = this.addMarker(DEVICE_TYPE.SMALLINSPECTOR, data[0]);
      marker.pointArr.push(workPoint);
纪泽龙's avatar
纪泽龙 committed
735
      marker.moveMarker.on("moveend", e => {
纪泽龙's avatar
纪泽龙 committed
736 737 738 739 740 741 742
        // 如果不是最后一个点,就创建一个新的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
743 744
      });
      marker.moveMarker.on("moveAlong", () => {
纪泽龙's avatar
纪泽龙 committed
745
        console.log("moveAlong", e);
纪泽龙's avatar
纪泽龙 committed
746 747 748 749 750 751 752 753 754 755
      });
      marker.moveMarker.moveAlong(lineArr, {
        // 每一段的时长
        duration: 1200,
        // JSAPI2.0 是否延道路自动设置角度在 moveAlong 里设置
        autoRotation: false
      });
      // map.setFitView();
    });
  }
纪泽龙's avatar
纪泽龙 committed
756 757 758 759 760 761 762 763 764 765 766
  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
767

768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784
  /**
   * 添加折线
   * @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,
785
        strokeColor: "#2EE7E7",
786 787 788 789 790 791 792 793 794
        strokeWeight: 4,
        strokeOpacity: 0.9,
        zIndex: 50,
        bubble: true,
        geodesic: true,
        extData: {
          type: "line",
          //当前line状态 0:正常状态 1:正在编辑状态
          isState: 0,
纪泽龙's avatar
纪泽龙 committed
795 796
          lineData: item,
          class: this
797 798 799 800 801 802 803
        }
      });

      this.polyLines.push(polyline);
      // 信息窗体
      this.newLineAddEvent(polyline);
      //添加事件
804
      polyline.on("mouseover", this.polylineMouseOver);
纪泽龙's avatar
纪泽龙 committed
805

806
      polyline.on("mouseout", e => {
纪泽龙's avatar
纪泽龙 committed
807
        // console.log("polyline.getExtData().lineData.alarmState",polyline.getExtData().lineData.alarmState)
纪泽龙's avatar
纪泽龙 committed
808
        if (polyline.getExtData().lineData.alarmState == 1) return;
809
        polyline.setOptions({ strokeColor: "#2EE7E7" });
810 811 812 813 814 815 816 817
        // infoWindow.close();
      });
      // 计算info的位置
      // function infoPosition() {}
    }
    map.add(this.polyLines);
    // 缩放地图到合适的视野级别
    // map.setFitView();
818
  }
819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 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
  // 鼠标移入线条执行
  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);
    }
    infoWindow.open(map, e.lnglat);
    console.log(infoWindow);
    // 如果是鼠标真正移入,则计算位置,如果不是鼠标真正移入,是人为执行出现infowindow,则不计算位置
    console.log("e.originEvent", e.originEvent);
    if (e.originEvent) {
      // 上方导航的高
      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));
    }
    this.boxCollision(infoWindow.dom);
    this.showInfoWindow = infoWindow;
    // const
  };

纪泽龙's avatar
纪泽龙 committed
893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917
  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,
      autoMove: false,
      content: dom.$el,
      //信息船体偏移量
      offset: new AMap.Pixel(0, 0),
      anchor: "left-top"
    });
    polyline.infoWindow = infoWindow;
    return infoWindow;
  }
918
  // 碰撞检测
纪泽龙's avatar
纪泽龙 committed
919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935
  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
936
    // 如果组件消失了ay回变成0,所以要记录一下,当它为0的时候取记录的值
纪泽龙's avatar
纪泽龙 committed
937 938 939 940
    if (ay != 0) {
      this.ay = ay;
    } else {
      ay = this.ay;
纪泽龙's avatar
纪泽龙 committed
941
    }
纪泽龙's avatar
纪泽龙 committed
942 943 944
    console.log("ay", ay);
    if (by + bh >= ay) {
      console.log("隐藏");
945
      this.view.bottomDataShow = false;
纪泽龙's avatar
纪泽龙 committed
946 947
    } else {
      console.log("显示");
948 949 950
      this.view.bottomDataShow = true;
    }
    // if((by+bh) -ay <0)
951
  }
纪泽龙's avatar
纪泽龙 committed
952 953 954 955 956 957 958 959 960 961 962 963 964
  // 把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
965
      // console.log("this");
纪泽龙's avatar
纪泽龙 committed
966
    });
967

纪泽龙's avatar
纪泽龙 committed
968 969 970 971 972 973 974 975
    infoWindow.close();
  }
  closeInfoWindow() {
    this.removeCloneDom();
    this.showInfoWindow && this.showInfoWindow.close();
    // 删除浮动到线上的cloneDom
    this.markerInfoWindow && this.markerInfoWindow.close();
    this.workerManInfoWindow && this.workerManInfoWindow.close();
纪泽龙's avatar
纪泽龙 committed
976
    // 工人的轨迹线条用的
纪泽龙's avatar
纪泽龙 committed
977 978
    this.markerPassedPolylineInfoWindow &&
      this.markerPassedPolylineInfoWindow.close();
纪泽龙's avatar
纪泽龙 committed
979 980
  }
  // 关闭转化到vue的dom
981
  removeCloneDom() {
纪泽龙's avatar
纪泽龙 committed
982
    // 线
983
    this.cloneDom && document.body.removeChild(this.cloneDom);
纪泽龙's avatar
纪泽龙 committed
984
    // 设备
纪泽龙's avatar
纪泽龙 committed
985
    // this.markerCloneDom && document.body.removeChild(this.markerCloneDom);
纪泽龙's avatar
纪泽龙 committed
986
    // 值班人员
纪泽龙's avatar
纪泽龙 committed
987 988 989
    // this.workerManCloneDom && document.body.removeChild(this.workerManCloneDom);

    // that.workerManInfoWindow = infoWindow;
990
    this.cloneDom = null;
纪泽龙's avatar
纪泽龙 committed
991 992 993
    // 关闭以前的infowindow
    // this.markerCloneDom = null;
    // this.workerManCloneDom = null;
994
  }
纪泽龙's avatar
纪泽龙 committed
995
  // 新建line增加编辑以及右键菜单
996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025

  // 创建一条新的线
  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
1026

1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 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 1081 1082 1083 1084 1085 1086 1087
  // 新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
1088 1089 1090 1091 1092
      const { deviceType, troubleId } = item.getExtData();

      if (type == 8 && troubleId) {
        bool ? item.show() : item.hide();
      } else if (deviceType == type) {
纪泽龙's avatar
纪泽龙 committed
1093 1094 1095 1096 1097 1098
        // 如果是值班人员,还要隐藏身上的线条以及marker
        if (type == 9) {
          if (bool) {
            item.moveMarker && item.moveMarker.show();
            item.polyline && item.polyline.show();
            item.passedPolyline && item.passedPolyline.show();
纪泽龙's avatar
纪泽龙 committed
1099 1100 1101 1102 1103
            if (item.pointArr?.length > 0) {
              item.pointArr.forEach(item => {
                item.show();
              });
            }
纪泽龙's avatar
纪泽龙 committed
1104 1105 1106 1107
          } else {
            item.moveMarker && item.moveMarker.hide();
            item.polyline && item.polyline.hide();
            item.passedPolyline && item.passedPolyline.hide();
纪泽龙's avatar
纪泽龙 committed
1108 1109 1110 1111 1112
            if (item.pointArr?.length > 0) {
              item.pointArr.forEach(item => {
                item.hide();
              });
            }
纪泽龙's avatar
纪泽龙 committed
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 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169
        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();
1170
      attr.strokeColor = "#2EE7E7";
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
      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
1208

1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 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 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
  /**
   * 添加鼠标事件
   */
  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;