当前位置:   article > 正文

vue+BMap获取两点之间驾车距离和时间_vue通过直线距离算行驶时间

vue通过直线距离算行驶时间

代码:

<script>
import 'echarts/extension/bmap/bmap'

export default {
        data() {
            return {}
        },
        methods: {
			drawLine() {
				let map = new BMap.Map("container",{enableMapClick: false});
                map.centerAndZoom(new BMap.Point(113.274, 23.135), 14);		// 设置中心点(广州)
                map.clearOverlays();	// 清除地图上的覆盖物
                let start = new BMap.Point(this.entities[0].longitudeFix,this.entities[0].latitudeFix);	// 起始点
                let end   =  new BMap.Point(this.entities[1].longitudeFix,this.entities[1].latitudeFix); 	// 终点

                    let time =  "";
                    let lenth = "";
                    let searchComplete = function (results){
                        if (transit.getStatus() != BMAP_STATUS_SUCCESS){ return ;}  // 检测返回状态
                        let plan = results.getPlan(0);
                        time = plan.getDuration(true) + "\n"; //获取时间
                        lenth = plan.getDistance(true);    //获取距离
                    };

                    let transit = new BMap.DrivingRoute(map, {renderOptions: {map: map},
                        onSearchComplete: searchComplete,
                        onPolylinesSet: function(){
                            setTimeout(function(){},10);
                        }
                    });
                    transit.search(start, end);
			}
		}
}

</script>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Gausst松鼠会/article/detail/100380
推荐阅读
相关标签
  

闽ICP备14008679号