zoukankan      html  css  js  c++  java
  • 百度地图路书

    <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();
    }
  • 相关阅读:
    第四章5
    第四章4
    第四章3
    第四章2
    第四章1
    第四章例4-8
    第四章例4-7
    第四章例4-6
    第四章例4-5
    第四章例4-4
  • 原文地址:https://www.cnblogs.com/caoxen/p/11227176.html
Copyright © 2011-2022 走看看