2021-05-04

使用vue+原生高德地图API+element-ui绘制后端返回的经纬度轨迹

在公司想要做这个需求之前,我翻阅过很多资料,最终在高德地图原生API和vue-amap上还是选择了高德地图原生API,至于原因嘛,当然是因为官网有相关实例可参考,并且vue-amap还是要熟悉原生高德地图API,所以不如直接用高德地图原生API。在这段时间里也是绕过一段远路,最终完美完成了所达到的效果,话不多说,分享一下自己踏过的坑,也希望有大佬给指点一二。

一、引入高德地图

1、在项目入口文件index.html引入高德地图
       //引入高德地图
       <script type="text/javascript" src="https://webapi.amap.com/maps?v=1.4.15&key=你的高德key"></script>
2、在vue.config.js中引入(若项目vue-cli版本低于3.0则在webpack.base.conf.js中引入,不同的项目可能有不一样的文件)
 module.exports = {
      configureWebpack: {
        externals: {
          'AMap': 'AMap' // 高德地图配置
          }
      }
}

二、相关代码

<template>
  <div class="app-container">
    ...
    <div id="carMap" style="width:100%;height:100%" />
  </div>
</template>
<script>
import AMap from 'AMap'
import InventoryManageAPI from '@/api/inventory-manage'
import { getMapTrack } from '@/api/sales-manage'//获取数据的接口
export default {
  name: 'SeeCar',
  data() {
    return {
      filterCondition: {
        keyCode: '',
        organId: '',
        groupId: ''
      },
      map: null, // 地图容器
      content: [], // 信息窗体内容
      cusContent: [],//客户信息窗体内容
      marker: null, // 标记
      marker1: null,
      marker2: null,
      markers: [],
      markerArr: [],
      tempArr: [],
      polyline: null,
      passedPolyline: null,
      startMarker: null,//起点标记
      endMarker: null,终点标记
      startIcon: new AMap.Icon({
        // 起点图标
        // 图标尺寸
        size: new AMap.Size(25, 34),
        // 图标的取图地址
        image:
          '//a.amap.com/jsapi_demos/static/demo-center/icons/dir-marker.png',
        // 图标所用图片大小
        imageSize: new AMap.Size(135, 40),
        // 图标取图偏移量
        imageOffset: new AMap.Pixel(-9, -3)
      }),
      endIcon: new AMap.Icon({
        // 终点图标
        size: new AMap.Size(25, 34),
        image:
          '//a.amap.com/jsapi_demos/static/demo-center/icons/dir-marker.png',
        imageSize: new AMap.Size(135, 40),
        imageOffset: new AMap.Pixel(-95, -3)
      })
    }
  },
  methods: {
    //初始化地图
    creatMap() {
      this.map = new AMap.Map('carMap', {
        resizeEnable: true, // 是否监听地图容器尺寸变化
        zoom: 11, // 级别
        center: [116.397428, 39.90923], // 中心点坐标
        viewMode: '3D'
      })
//调用接口获取经纬度相关信息
      InventoryManageAPI.getListWithBody('getDeliveryPathByCarCode', this.filterCondition).then(res => {
        this.content = []
        for (const l of res.data.pageItems) {
          this.content = [...this.content, { con: `车主:${l.ownerName} </br>车牌:${l.licenceCode}</br>编号:${l.carCode}</br>手机号:${l.ownerTel}</br>状态:${l.status}`, color: l.status === '已送货' ? '#67C23A' : '#E6A23C', lnglat: [l.longitude, l.latitude], id: l.carCode }]
        }
        this.content.forEach(con => {
          this.marker = new AMap.Marker({
            position: con.lnglat,
            icon: require('../../../../assets/image/car.png'),
            map: this.map,
            visible: true,
            id: con.id
          })
          this.marker.setLabel({
            offset: new AMap.Pixel(-90, -60), // 设置文本标注偏移量
            content: `<div style="background:${con.color};color:#fff;">${con.con}</div>`, // 设置文本标注内容 ,
            direction: 'right' // 设置文本标注方位
          })
          this.marker.id = con.id
          this.marker.on('click', this.markerClick)
          this.markers.push(this.marker)
          this.map.setFitView()
        })
      })
    },
    markerClick(e) {
//移除上一次点击的轨迹和marker、图标
      this.$nextTick(() => {
        if (this.polyline) {
          this.map.remove(this.polyline)
          this.map.remove(this.marker1)
          this.map.remove(this.marker2)
          this.map.remove([this.startMarker, this.endMarker])
        }
      })
      this.markerArr = []
      const data = {
        organId: this.filterCondition.organId,
        groupId: this.filterCondition.groupId,
        carCode: e.target.id
      }
      getMapTrack(data).then(result => {
        const position = result.data.pageItems[0].cars[0].gps
        if (position.length > 0) {
          position.forEach(item => {
            this.tempArr = [item.longitude, item.latitude]
            // 格式转换后push进订单经纬度
            this.markerArr.push(this.tempArr)
          })
          this.$nextTick(() => {
            this.playLine()
          })
          const customer = result.data.pageItems[0].cars[0].cuss
          if (customer.length > 0) {
            for (const cus of customer) {
              this.cusContent = [...this.cusContent, { id: cus.cusCode, con: `客户:${cus.cusName}</br>货物方数:${cus.cusBulk}</br>编号:${cus.cusCode}</br>手机号:${cus.cusPhone}</br>状态:${cus.cusFinish ? '已送货' : '未送货'}`, color: cus.cusFinish ? '#67C23A' : '#F56C6C', lnglat: [cus.cusLongitude, cus.cusLatitude] }]
            }
            console.log(this.cusContent)
            this.cusContent.forEach(con => {
              this.marker2 = new AMap.Marker({
                position: con.lnglat,
                icon: require('../../../../assets/image/customer.png'),
                map: this.map,
                visible: true
              })
              this.marker2.setLabel({
                offset: new AMap.Pixel(-97, -65), // 设置文本标注偏移量
                content: `<div style="background:${con.color};color:#fff;">${con.con}</div>`, // 设置文本标注内容 ,
                direction: 'right' // 设置文本标注方位
              })
              this.markers.push(this.marker2)
              this.map.setFitView()
            })
          }
        }
      })
    },
    playLine() {
      // 初始化起点终点
      this.initStartEnd()
      this.marker1 = new AMap.Marker({
        map: this.map,
        // 小车初始位置
        position: this.markerArr[0],
        icon: require('../../../../assets/image/car.png'),
        offset: new AMap.Pixel(-26, -13),
        autoRotation: true,
        angle: -90
      })
      // 绘制轨迹
      this.polyline = new AMap.Polyline({
        map: this.map,
        path: this.markerArr,
        showDir: true,
        strokeColor: '#28F', // 线颜色
        strokeOpacity: 1, // 线透明度
        strokeWeight: 6, // 线宽
        strokeStyle: 'solid' // 线样式
      })
      // marker开始移动
      this.marker1.moveAlong(this.markerArr, 10000)// 第二个参数代表行驶速度
      // 自适应放大
      this.map.setFitView()
    },
//自定义图标
    initStartEnd() {
      // 将icon添加进marker
      this.startMarker = new AMap.Marker({
        position: new AMap.LngLat(this.markerArr[0][0], this.markerArr[0][1]),
        icon: this.startIcon,
        offset: new AMap.Pixel(-13, -30)
      })
      // 将icon添加进marker
      this.endMarker = new AMap.Marker({
        position: new AMap.LngLat(this.markerArr[this.markerArr.length - 1][0], this.markerArr[this.markerArr.length - 1][1]),
        icon: this.endIcon,
        offset: new AMap.Pixel(-13, -30)
      })

      // 将 markers 添加到地图
      this.map.add([this.startMarker, this.endMarker])
    }
  }
}
</script>

<style lang="scss" scoped>
  >>> .amap-marker-label{
    border-radius: 6px;
    position: absolute;
    padding: 0;
    border: none;
    font-size: 16px;
    line-height: 16px;
  }
  >>> .amap-marker-label::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -15px;
    border-width: 10px;
    border-style: solid;
    border-color:black transparent transparent transparent;
}
</style>
最终效果如图所示
carMap.png
carMap2.png

总结:使用高德地图完成两个需求后,感觉确实挺好玩的,还有着很多功能可以发掘,这之间也碰到了一些问题,比如信息窗体只能地图上只能显示一个,所以我就采用了文本标记的方法代替了信息窗体,另外建议使用这个信息窗体的内容或者文本标注内容时,最好把content抽离出来遍历,这样有利于后期维护。(另外这个轨迹是个动画,是模仿官网实例轨迹回放)

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 215,723评论 6 498
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 92,003评论 3 391
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 161,512评论 0 351
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,825评论 1 290
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,874评论 6 388
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,841评论 1 295
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,812评论 3 416
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,582评论 0 271
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 45,033评论 1 308
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,309评论 2 331
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,450评论 1 345
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,158评论 5 341
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,789评论 3 325
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,409评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,609评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,440评论 2 368
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,357评论 2 352

推荐阅读更多精彩内容

  • 学习笔记: 1.个人觉得一个好家长应该这样: (1)有自己的事业、生活、圈子、享受。 (2)不围着娃转。 (3)选...
    正版瓷心鱼阅读 152评论 0 0
  • 2021,5.4。明天,李沐谨就十一个月了。时间过的好快,感觉一切都像一场梦一样。还记得她刚出生时,六斤一两,小圆...
    尼古拉斯小太阳阅读 447评论 0 1
  • 今天在重构公司项目的时候遇到一个需求,之前的项目使用的是angularjs,里面有用到高德地图插件,解决方案非常传...
    coder_Simon阅读 15,769评论 13 36
  • 最近项目要在地图上显示重点区域,所以又把高德地图捡起来,vue-amap新插件用不习惯,还是调用原生高德api。 ...
    一叶浮生如梦阅读 2,077评论 2 0
  • 我是黑夜里大雨纷飞的人啊 1 “又到一年六月,有人笑有人哭,有人欢乐有人忧愁,有人惊喜有人失落,有的觉得收获满满有...
    陌忘宇阅读 8,535评论 28 53