Canvas基于百度地图绘制流动曲线

2020-03-18 21:21:47

参考地址Canvas基于百度地图绘制流动曲线


在线预览:http://qingshanboke.com/demo/baidumap.htm


效果图:




代码实现(具体看代码注释)


<!DOCTYPE html>

<html>

 

<head>

    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />

    <meta name="viewport" content="initial-scale=1.0, user-scalable=no" />

    <style type="text/css">

        .main {

            width: 1024px;

            margin: 10px auto;

            position: relative;

        }

        

        #stylelist {

            padding: 5px;

            border: 1px solid #e3e3e3;

        }

        

        #allmap {

            width: 1024px;

            height: 600px;

            overflow: hidden;

            font-family: "微软雅黑";

            border: 1px solid #9E9E9E;

            position: absolute;

            top: 0;

            left: 0;

        }

        

        #point,

        #line {

            width: 1024px;

            height: 600px;

            z-index: 100;

            background: transparent;

            position: absolute;

            top: 0;

            left: 0;

        }

    </style>

    <script type="text/javascript" src="http://api.map.baidu.com/api?v=2.0&ak=jLZE4wcUhQKyFaDOGhBFcare"></script>

    <title>地图展示</title>

</head>

 

<body>

    <div class="main">

        地图样式:

        <select id="stylelist" οnchange="changeStyle()">

            <option value="normal">默认地图样式</option>

            <option value="light">清新蓝风格</option>

            <option value="dark">黑夜风格</option>

            <option value="redalert">红色警戒风格</option>

            <option value="googlelite">精简风格</option>

            <option value="grassgreen">自然绿风格</option>

            <option value="midnight" selected="selected">午夜蓝风格</option>

            <option value="pink">浪漫粉风格</option>

            <option value="darkgreen">青春绿风格</option>

            <option value="bluish">清新蓝绿风格</option>

            <option value="grayscale">高端灰风格</option>

            <option value="hardedge">强边界风格</option>

        </select> </div>

    <div class="main">

        <div id="allmap"></div>

        <canvas id="line" width="600" height="600"></canvas>

        <canvas id="point" width="600" height="600"></canvas>

    </div>

</body>

 

</html>

 

<script type="text/javascript">

    // 百度地图

    var map = new BMap.Map("allmap");

    map.centerAndZoom(new BMap.Point(104.077506, 30.655077), 9); //中心位置:成都

    map.addControl(new BMap.MapTypeControl({

        mapTypes: [

            BMAP_NORMAL_MAP,

            BMAP_HYBRID_MAP

        ]

    }));

    map.setCurrentCity("成都");

    map.enableScrollWheelZoom(false);

    var mapStyle = {

        features: ["road", "building", "water", "land"],

        style: "midnight",

    };

    map.setMapStyle(mapStyle);

 

    //地图样式切换

    function changeStyle() {

        var stylectl = document.getElementById("stylelist");

        var style = stylectl.options[stylectl.selectedIndex].value;

        var mapStyle = {

            features: ["road", "building", "water", "land"],

            style: style,

        };

        map.setMapStyle(mapStyle);

        switch (style) {

            case "normal":

            case "googlelite":

            case "pink":

                _linecolor = "#2196F3";

                _titlecolor = "#FF5722";

                break;

 

            case "midnight":

            case "redalert":

                _linecolor = "#ffda4a";

                _titlecolor = "#ff0";

                break;

            case "normal":

                _linecolor = "#2196F3";

                _titlecolor = "#FF5722";

                break;

            default:

                _linecolor = "#FF9800";

                break;

        }

        drawLine()

    }

</script>

<script type="text/javascript">

    var _linecolor = "#ffda4a";

    var _titlecolor = "#ff0";

    let _t = 0; //圆点滚动控制

 

    //曲线1:成都->南充

    var line1 = {

        //成都

        begin: {

            x: 514,

            y: 316

        },

        control1: {

            x: 646,

            y: 126

        },

        control2: {

            x: 846,

            y: 328

        },

        //南充

        end: {

            x: 958,

            y: 251

        },

    };

 

    //曲线2:内江->成都

    var line2 = {

        //内江

        begin: {

            x: 729,

            y: 567

        },

        //成都

        end: {

            x: 514,

            y: 316

        },

        control1: {

            x: 666,

            y: 333

        },

        control2: {

            x: 508,

            y: 528

        },

    };

 

    //曲线3:雅安->成都

    var line3 = {

        //雅安

        begin: {

            x: 289,

            y: 462

        },

        //成都

        end: {

            x: 514,

            y: 316

        },

        control1: {

            x: 391,

            y: 293

        },

        control2: {

            x: 389,

            y: 402

        },

    };

 

    //绘制曲线

    function drawLine() {

        let lineCanvas = document.getElementById("line");

        let ctx = lineCanvas.getContext("2d");

        lineCanvas.width = 1024;

        lineCanvas.height = 600;

        ctx.clearRect(0, 0, 1024, 600);

 

        //左下角文字

        ctx.beginPath();

        ctx.moveTo(0, 580);

        ctx.font = "18px bold 黑体";

        ctx.fillStyle = _titlecolor;

        ctx.fillText("流动人员人事档案转入转出示意图", 10, 30);

        ctx.stroke();

        ctx.closePath();

 

        //曲线1:成都->南充

        ctx.beginPath();

        ctx.moveTo(line1.begin.x, line1.begin.y);

        ctx.bezierCurveTo(line1.control1.x, line1.control1.y, line1.control2.x, line1.control2.y, line1.end.x, line1.end.y);

        ctx.strokeStyle = _linecolor; //2196F3

        ctx.lineWidth = 2;

        ctx.stroke();

        ctx.closePath();

 

        //曲线2:内江->成都

        ctx.beginPath();

        ctx.moveTo(line2.begin.x, line2.begin.y);

        ctx.bezierCurveTo(line2.control1.x, line2.control1.y, line2.control2.x, line2.control2.y, line2.end.x, line2.end.y);

        ctx.strokeStyle = _linecolor; //FF9800

        ctx.lineWidth = 2;

        ctx.stroke();

        ctx.closePath();

 

        //曲线3:雅安->成都

        ctx.beginPath();

        ctx.moveTo(line3.begin.x, line3.begin.y);

        ctx.bezierCurveTo(line3.control1.x, line3.control1.y, line3.control2.x, line3.control2.y, line3.end.x, line3.end.y);

        ctx.strokeStyle = _linecolor;

        ctx.lineWidth = 2;

        ctx.stroke();

        ctx.closePath();

    }

    drawLine();

 

    //绘制某一时刻的点

    function drawPoint(ctx, t, point1, text, textcolor) {

 

        //根据三次贝塞尔曲线的公式,获取某时刻t[0-1]的贝塞尔曲线上的点     

        let x = point1.begin.x * Math.pow((1 - _t), 3) + 3 * _t * point1.control1.x * Math.pow((1 - _t), 2) + 3 * point1.control2.x * Math.pow(_t, 2) * (1 - _t) + point1.end.x * Math.pow(_t, 3);

        let y = point1.begin.y * Math.pow((1 - _t), 3) + 3 * _t * point1.control1.y * Math.pow((1 - _t), 2) + 3 * point1.control2.y * Math.pow(_t, 2) * (1 - _t) + point1.end.y * Math.pow(_t, 3);

 

        //点移出曲线后,重新开始

        let max_x = point1.end.x > point1.begin.x ? point1.end.x : point1.begin.x;

        if (x > max_x) {

            _t = 0;

            x = point1.begin.x;

            y = point1.begin.y;

        }

 

        ctx.beginPath();

        //画小圆点

        ctx.moveTo(point1.begin.x, point1.begin.y);

        ctx.arc(x, y, 4, 0, 2 * Math.PI, false);

        ctx.fillStyle = "#e95b55";

        ctx.fill();

 

        //显示文字

        ctx.font = 'bold 12px Arial';

        ctx.textAlign = 'left';

        ctx.textBaseline = 'bottom';

        ctx.fillStyle = textcolor;

        ctx.fillText(text, x, y - 12);

        //显示当前坐标

        //ctx.fillText("x:" + parseInt(x), x, y - 24);

        //ctx.fillText("y:" + parseInt(y), x, y - 12);

        ctx.closePath();

    }

 

    //绘制某一时刻的点,连续绘制形成动图

    function drawOneMoment() {

        let pointCanvas = document.getElementById("point");

        let ctx = pointCanvas.getContext("2d");

        pointCanvas.width = 1024;

        pointCanvas.height = 600;

        //清除画布

        ctx.clearRect(0, 0, 1024, 600);

        //逐个绘点

        drawPoint(ctx, _t, line1, "转出1000", '#0c79d0') //成都->南充

        drawPoint(ctx, _t, line2, "转入600", "orangered") //内江->成都

        drawPoint(ctx, _t, line3, "转入400", "orangered") //雅安->成都 

        _t += 0.01;

    }

    setInterval(drawOneMoment, 60);

</script>



  • 2020-03-18 21:30:57

    基于OpenLayers实现地理围栏 谷歌百度高德地图都可以

    前言.因为项目有点特殊,需要接入谷歌地图实现地理围栏,因为谷歌地图的地理围栏接口相关接口并不完善,于是就换了一个思路,利用OpenLayers来实现地理围栏 openlayers 中文地址 http://weilin.me/ol3-primer/ch02/index.html 作者:zcty0701 链接:https://www.jianshu.com/p/60e88ee1e843 来源:简书 著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。

  • 2020-03-19 17:12:40

    百度地图放大覆盖物消失

    产生问题的原因是因为我们用的普通的点数组生成的多边形,我们应该用百度的点数组生成就没问题了。

  • 2020-03-19 19:15:47

    vue中methods watch和compute的区别和联系

    首先要说,methods,watch和computed都是以函数为基础的,但各自却都不同 而从作用机制和性质上看,methods和watch/computed不太一样,所以我接下来的介绍主要有两个对比: 1.methods和(watch/computed)的对比

  • 2020-03-19 19:50:31

    用vue做的跟随鼠标移动的div

    随鼠标移动的动画效果,之前一直使用angular和react,没怎么接触过vue,先做一个vue的简单例子,然后再整合。

  • 2020-03-20 13:35:55

    随便想到,群聊天的数据库简单设计

    拆分成两个表,一个是消息的流水表,一个是每个人的配置表。 记录每个群下面的这个用户的最后读取的消息last_msg_id,然后在计算消息未读数据。 这样优化之后数据将减少好多,数量是 m+n条数据。不在是成倍增长了。

  • 2020-03-20 13:39:50

    类似与微信朋友圈功能数据库如何实现

    每次发圈子的时候,给关注我的每个uuid,发一个内容id。 大概表的设计就是 uuid,idlist 这样的,idlist是按照时间顺序的。 然后定期删除idlist过多的老圈子。

  • 2020-03-21 00:11:38

    Android卡片布局(圆角阴影)的几种实现及分析

    在开发中,为了界面美观,圆角view和阴影效果是开发中经常遇到的UI场景,比如银行卡效果,卡片式itemView布局,Banner图等,开发中我们通过各种方式实现了这种效果,但是哪种方案最好呢,接下来本文将比较几种常见的圆角阴影布局实现,并从内存占用角度分析它们的优缺点.

  • 2020-03-21 12:05:24

    android 自定义组件,使用AttributeSet

    首先要在res/values目录下建立一个attrs.xml(名字可以自己定义)的文件,并在此文件中增加对控件的属性的定义.其xml文件如下所示: