高德地图loca可视化脉冲流动线条

复制代码
<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>oo</title>
    <style>
        html,
        body,
        #map {
            width: 100%;
            height: 100%;
            margin: 0;
            padding: 0;
        }

        .demo-title {
            position: absolute;
            top: 25px;
            left: 25px;
            z-index: 1;
        }

        h1 {
            font-size: 18px;
            margin: 0;
            color: rgb(180, 180, 190);
        }

        h3 {
            font-size: 12px;
            font-weight: normal;
            margin-top: 5px;
            color: rgb(150, 150, 150);
        }
    </style>
</head>

<body>
    <div class="demo-title">
        <h1>北京公交线路行驶路线分类</h1>
        <h3>北京全市范围内各公交线路运行情况</h3>
    </div>
    <div id="map"></div>
    <script src="https://webapi.amap.com/maps?v=2.0&key=你的key"></script>
    <script src="https://webapi.amap.com/loca?v=2.0.0&key=你的key"></script>
    <script>
        //数据格式

        var pLineData = {
            "type": "FeatureCollection",
            "features": [
                {
                    "type": "Feature", "properties": { "type": 1 },
                    "geometry": {
                        "type": "LineString",
                        "coordinates": [[116.417458, 39.934026],]
                    }
                },
                {
                    "type": "Feature", "properties": { "type": 2 }, "geometry":
                    {
                        "type": "LineString",
                        "coordinates":
                            [[
                                126.128627,
                                41.146943
                            ],
                            [
                                126.12425,
                                41.137959
                            ],
                            [
                                126.113693,
                                41.128908
                            ]]
                    }
                },

            ]
        }
        var map = (new AMap.Map('map', {
            zoom: 11.2,
            center: [126.128627,
                41.146943],
            showLabel: false,

            mapStyle: 'amap://styles/45311ae996a8bea0da10ad5151f72979',
            pitch: 50,
        }));
        //初始化可视化
        var loca = new Loca.Container({
            map,
        });
        window._loca = loca;

        var geo = new Loca.GeoJSONSource({
            data: pLineData //数据格式
        })
//新建一个图层
        var layer = new Loca.PulseLineLayer({
            // loca,
            zIndex: 10,
            opacity: 1,
            visible: true,
            zooms: [2, 22],
        });

//填数据
        layer.setSource(geo);
        //填样式
        layer.setStyle({
            altitude: 0,
            lineWidth: 10,
            // 脉冲头颜色
            headColor: "rgb(255, 0, 0)",
            // 脉冲尾颜色
            trailColor: 'rgba(0, 0, 192, 0.9)',
            // 脉冲长度,0.25 表示一段脉冲占整条路的 1/4
            interval: 0.25,
            // 脉冲线的速度,几秒钟跑完整段路
            duration: 5000,
        });
        //添加图层开始动画
        loca.add(layer);
        loca.animate.start();
//结束



        var headColors = ['#EFBB51', '#7F3CFF', '#4CC19B', '#0B5D74', '#E06AC4', '#223F9B', '#F15C1A', '#7A0FA6'];
        // var headColors = ['#EFBB51', '#7F3CFF', '#4CC19B', '#0B5D74', '#E06AC4', '#223F9B', '#F15C1A', '#7A0FA6'];
        console.log('geo', geo);


        // 图例
        var lengend = new Loca.Legend({
            loca: loca,
            title: {
                label: '公交类型',
                fontColor: 'rgba(255,255,255,0.4)',
                fontSize: '16px'
            },
            style: {
                backgroundColor: 'rgba(255,255,255,0.1)',
                left: '20px',
                bottom: '40px',
                fontSize: '12px'
            },
            dataMap: [
                { label: 'A类型', color: headColors[7] },
                { label: 'B类型', color: headColors[6] },
                { label: 'C类型', color: headColors[5] },
                { label: 'D类型', color: headColors[4] },
                { label: 'E类型', color: headColors[3] },
                { label: 'F类型', color: headColors[2] },
                { label: 'G类型', color: headColors[1] },
                { label: 'H类型', color: headColors[0] },
            ],
        });

        loca.animate.start();
        var dat = new Loca.Dat();
        dat.addLayer(layer, '公交');

    </script>
</body>

</html>
相关推荐
Csvn6 小时前
OpenSpec 详细使用教程
前端
之歆7 小时前
Day19_LESS 完全指南——从入门到工程实践
前端·css·less
云水一下8 小时前
HTML5 从入门到精通:实战收官——从零搭建完整静态网站,综合运用所有知识
前端·html5
不总是8 小时前
Windows 系统 Node.js 免安装版(zip)安装与配置教程(2026 最新)
前端·windows·node.js
冬奇Lab8 小时前
每日一个开源项目(第105篇):Twenty - 跳出 Salesforce 的圈套,定义现代开源 CRM
前端·后端·开源
zhangyao9403309 小时前
开发pc端时,表格的高度怎么设置才能铺满页面
前端·javascript·elementui
XinZong10 小时前
实测OpenClaw虾淘:全民工具AI时代,冷门非工具类的Skill还能出圈吗?
javascript
kjs--10 小时前
浏览器书签执行脚本
前端
烛衔溟10 小时前
TypeScript 类的类型 —— 作为类型使用
javascript·ubuntu·typescript
之歆10 小时前
Day16_JavaScript 轮播图与事件工程实战(下篇)
服务器·开发语言·前端·javascript·网络·性能优化