码迷,mamicode.com
首页 > 其他好文 > 详细

百度地图路书

时间:2019-07-22 18:41:12      阅读:1318      评论:0      收藏:0      [点我收藏+]

标签:lse   img   baidu   poi   tar   nta   百度   fun   lib   

<script type="text/javascript" src="https://api.map.baidu.com/library/LuShu/1.2/src/LuShu_min.js"></script>
lushu = new BMapLib.LuShu(map, pointArray, {
        defaultContent: ‘‘,//显示信息
        autoView: true,//是否开启自动视野调整,如果开启那么路书在运动过程中会根据视野自动调整
        icon: new BMap.Icon(‘/static/img/arrow.png‘, new BMap.Size(30, 30)),
        speed: speed,//速度
        enableRotation: false, //是否设置marker随着道路的走向进行旋转
        landmarkPois: []
});
/**
 * 路书播放
 */
function start() {
    stopAllPoly();
    if (lushu) lushu.start();
}

/**
 * 路书暂停
 */
function pause() {
    if (lushu) lushu.pause();
}

/**
 * 路书停止
 */
function stop() {
    if (lushu) lushu.stop();
}

 

百度地图路书

标签:lse   img   baidu   poi   tar   nta   百度   fun   lib   

原文地址:https://www.cnblogs.com/caoxen/p/11227176.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!