vue使用高德地图进行轨迹回放

最近在做一个车辆管理系统,需要将车辆的定位轨迹通过高德地图回放出来。查找了一些文档后成功完成。

一、首先

在index.html中引入高德地图api

<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <!-- <meta name="viewport" content="width=device-width,initial-scale=1.0"> -->
    <!-- 禁止页面缩放 -->
    <meta content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" name="viewport" />
    <title>啊啊啊啊</title>
    <!-- 企业微信api -->
    <script type="text/javascript" src="http://res.wx.qq.com/open/js/jweixin-1.2.0.js"></script>
    <!-- 高德地图 -->
      <script type="text/javascript" src="https://webapi.amap.com/maps?v=1.4.14&key=dsffsdfdsfsdfsdfdsf"></script>
    <!-- 调试工具 -->
    <script src="https://cdn.bootcss.com/vConsole/3.3.4/vconsole.min.js"></script>
  </head>
  <body>
    <div id="app"></div>
    <!-- built files will be auto injected -->
  </body>
</html>

其中的key需要你去高德地图注册获取,这里就不详细说了,度娘一查便知。

二、页面中使用

在trackquery.vue中去使用。在html中先设置一个id为"container"的容器

<template>
    <div class="trackquery">
      <div id="container" class="map"></div>
        <div class="contbtn" v-if="lineArr.length > 0">
            <flexbox>
                <flexbox-item><div class="flex-demo">
                    <x-button v-if="starshow" class="btncol" type="primary" @click.native="starmove">开始动画</x-button>
                    <x-button v-if="!starshow" class="btncol" type="primary" @click.native="stopAnimation">停止动画</x-button>
                </div></flexbox-item>
                <flexbox-item><div class="flex-demo">
                    <x-button :disabled="btndisabled" v-if="endshow" class="btncol" type="primary" @click.native="endmove" style="background-color: rgb(68, 138, 202);">暂停动画</x-button>
                    <x-button :disabled="btndisabled" v-if="!endshow" class="btncol" type="primary" @click.native="resumeAnimation" style="background-color: rgb(68, 138, 202);">继续动画</x-button>
                </div></flexbox-item>
            </flexbox>
        </div>
    </div>
</template>

应为有可能在定位的时间段中会有多条数据,这里就需要后端去做一些判断,将数据分离出来。
然后在下面的js中去实现逻辑,多余的不说了,看代码

  data() {
        return {
            btndisabled: true,
            loadshow: false,
            loadtext: '提交中',
            showtop: true,
            starshow: true,
            endshow: true,
            userinfo: {},
            cphList: [],
            sjmcList: [],
            cphid: '',
            cphmc: '',
            sjmcid: '',
            sjmc: '',
            startime: '',
            endtime: '',
            sigInfo: {},
            map: "",
            lineArr: [],
            lineArrlast: [],
            lineArrPre: [],
            marker: '',
            k: 0,
        }
    },
  created() {

    },
    mounted() {
        // 初始化地图
        this.getmap()
    },
  methods: {
    // 这个是点击查询,在上面设置个按钮绑定就可以查询到数据
    getlineArr() {
            this.btndisabled = true
            this.starshow = true
            this.endshow = true
            this.map = ''
            this.lineArr = []
            this.lineArrlast = []
            this.lineArrPre = []
            this.marker = ''
            this.k = 0
            this.getmap()
            if(!this.cphmc && !this.sjmcid) {
                this.$vux.toast.show({
                    text: '请选择司机或者车牌号',
                    type: 'text',
                })
                return false
            }
            if(!this.startime) {
                this.$vux.toast.show({
                    text: '请选择开始时间',
                    type: 'text',
                })
                return false
            }
            if(!this.endtime) {
                this.$vux.toast.show({
                    text: '请选择结束时间',
                    type: 'text',
                })
                return false
            }
            this.loadshow = true
            let dataobj = {
                'moduleName': 'asdasda',
                'requestType': 'GetData',
                'tokenId': window['cutModel'].TokenId,
                'START_DATE': this.startime,
                'END_DATE': this.endtime,
                'CAR_NUMBER': this.cphmc,
                'DRIVER_NO': this.sjmcid,
            }
            this.$axios.get('fsdsfdsf', dataobj)
            .then(res => {
                this.loadshow = false
                res = JSON.parse(res)
                // console.log(res)
                if(res.Data.Statu_Code == 200) {
                    if(res.Data.List == null || res.Data.List == []) {
                        this.lineArr = []
                        this.$vux.toast.show({
                            text: res.Data.Msg,
                            type: 'text',
                        })
                    } else {
                        this.lineArr = res.Data.List
                    }
                    this.getmap()
                } else {
                    this.$vux.toast.show({
                        text: res.Data.Msg,
                        type: 'warn',
                        time: 3000,
                    })
                }
            })
            .catch(err => {
                this.loadshow = false
                this.$vux.toast.show({
                    text: '请求失败',
                    type: 'warn',
                    time: 1000,
                })
            });
        },
      getmap() {
            //  测试数据
            this.lineArr = ["37.8733379449,112.55877766927|37.8732877604,112.55876600477|37.8733064779,112.5587516276|37.8732354058,112.55877929688|37.8731488715,112.55866102431|37.8730938043,112.55855604384|37.8729125977,112.55849093967|37.872827691,112.55837158203|37.8727848307,112.55822238498|37.8727718099,112.55802517361|37.8728314887,112.55778184679|37.8729033746,112.55748616536|37.8728721788,112.5572781033|37.8728428819,112.55718641493|37.8728192817,112.55690456814|37.872827691,112.55672688802|37.8728881836,112.55657172309|37.8728849284,112.55644504123|37.8727517361,112.55618109809|37.8724210612,112.55612792969|37.8722357856,112.55611328125|37.8721343316,112.55603135851|37.8721443685,112.5558710395|37.8721072049,112.5559375|37.8720486111,112.55637315538|37.8722252062,112.55630886502|37.8722734918,112.5563031684|37.8730498589,112.55625108507"]
            let self = this;
            let polylineX,nColorLength,currentLen,latlonarr,pointList
            let colors = ["#3366cc", "#dc3912", "#109618", "#990099", "#0099c6", "#dd4477", "#66aa00", "#316395", "#994499", "#22aa99", "#6633cc", "#329262", "#5574a6", "#3b3eac"];
            this.map = new AMap.Map("container", {
                resizeEnable: true,
                center: [112.588043,37.860335],
                zoom: 12
            });
            if(this.lineArr.length > 0) {
                for(let j = 0; j < this.lineArr.length; j++) {
                    polylineX = "polyline" + j;
                    //计算取颜色的函数
                    nColorLength = colors.length;
                    currentLen = 0;
                    if (j > nColorLength) {
                        currentLen = j % 14;
                    }
                    else {
                        currentLen = j;
                    }
                    latlonarr = this.lineArr[j].split('|')
                    if(latlonarr.length > 0) {
                        if(j < this.lineArr.length - 1) {
                            this.lineArrPre = []
                            for(let i = 0; i < latlonarr.length; i++) {
                                pointList = latlonarr[i].split(',');
                                if (pointList.length > 0) {
                                    this.lineArrPre.push(new AMap.LngLat(pointList[1], pointList[0]));
                                }
                            }
                            polylineX = new AMap.Polyline({
                                map: this.map,
                                path: this.lineArrPre,
                                showDir: true,
                                strokeColor: colors[currentLen],  //线颜色
                                strokeWeight: 6      //线宽
                            });
                        } else {    //最后一条轨迹绘制移动轨迹
                            for(let i = 0; i < latlonarr.length; i++) {
                                pointList = latlonarr[i].split(',');
                                if (pointList.length > 0) {
                                    this.lineArrlast.push(new AMap.LngLat(pointList[1], pointList[0]));
                                }
                            }
                            polylineX = new AMap.Polyline({
                                map: this.map,
                                path: this.lineArrlast,
                                showDir: true,
                                strokeColor: colors[currentLen],  //线颜色
                                strokeWeight: 6      //线宽
                            });
                            if(this.lineArrlast.length > 0) {
                                 this.marker = new AMap.Marker({
                                    map: this.map,
                                    position: [this.lineArrlast[0].lng,this.lineArrlast[0].lat],
                                    icon: "https://webapi.amap.com/images/car.png",
                                    offset: new AMap.Pixel(-26, -13),
                                    autoRotation: true,
                                    angle:-90,
                                });
                            }
                            var passedPolyline = new AMap.Polyline({
                                map: this.map,
                                // path: lineArr,
                                strokeColor: "#AF5", //线颜色
                                strokeOpacity: 1, //线透明度
                                strokeWeight: 6 //线宽
                                // strokeStyle: "solid"  //线样式
                            });
                            this.marker.on('moving', function (e) {
                                passedPolyline.setPath(e.passedPath);
                            });
                        }
                    }
                }
            }
            this.map.setFitView();
        },
      starmove() {
            this.starshow = false
            this.btndisabled = false
            this.marker.moveAlong(this.lineArrlast, 500);
        },
        endmove() {
            this.endshow = false
            this.marker.pauseMove();
        },
        resumeAnimation() {
            this.endshow = true
            this.marker.resumeMove();
        },
        stopAnimation() {
            this.starshow = true
            this.endshow = true
            this.btndisabled = true
            this.marker.stopMove();
        },
  }

完成,轨迹回放也没问题。

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