vue3使用echarts实现地图撒点、飞线等功能

echarts地图配置参考链接
链接2

vue3使用echarts
在这里插入图片描述

map.vue

<template>
  <div class="echart-demo" id="demo"></div>
</template>

<script setup lang="ts">
//引入echart和json数据
import * as echarts from 'echarts'
import ShAhZj from './map.json'
import { onMounted } from 'vue'

//设置echart数据
let setOption = () => {
  //获取echart对象
  let dom = document.getElementById('demo')
  if (dom) {
    console.log(1111);
    let data = [
      {
        name: "上海市",
        value: Math.round(Math.random() * 100),
      },
      {
        name: "安徽省",
        value: Math.round(Math.random() * 100),
      },
      {
        name: "杭州市",
        value: Math.round(Math.random() * 100),
      },
      {
        name: "湖州市",
        value: Math.round(Math.random() * 100),
      },
      {
        name: "嘉兴市",
        value: Math.round(Math.random() * 100),
      }, {
        name: "舟山市",
        value: Math.round(Math.random() * 100),
      },
      {
        name: "绍兴市",
        value: Math.round(Math.random() * 100),
      },
      {
        name: "宁波市",
        value: Math.round(Math.random() * 100),
      },
      {
        name: "金华市",
        value: Math.round(Math.random() * 100),
        itemStyle: {
          areaColor: '#F50508',
          borderColor: '#1773c3', // 区域边框
          shadowColor: '#1773c3', // 阴影
        }
      }, {
        name: "台州市",
        value: Math.round(Math.random() * 100),
      },
      {
        name: "丽水市",
        value: Math.round(Math.random() * 100),
      },
      , {
        name: "温州市",
        value: Math.round(Math.random() * 100),
      },
      {
        name: "衢州市",
        value: Math.round(Math.random() * 100),
      },
    ]

    //初始化
    let myEchart = echarts.init(dom)
    //注册地图
    echarts.registerMap('上海安徽浙江', ShAhZj)
    let option = {
      backgroundColor: '#000f1e',
      geo: {
        map: '上海安徽浙江',
        aspectScale: 0.8,
        layoutCenter: ['50%', '50%'], //地图位置
        layoutSize: '75%',
        itemStyle: {
          normal: {
            shadowColor: '#276fce',
            shadowOffsetX: 0,
            shadowOffsetY: 0,
            opacity: 0.2
          },
          emphasis: {
            areaColor: '#276fce'
          }
        }
      },
      tooltip: {
        trigger: 'item',
        backgroundColor: 'rgba(166, 200, 76, 0.82)',
        borderColor: '#FFFFCC',
        showDelay: 0,
        hideDelay: 0,
        enterable: true,
        transitionDuration: 0,
        extraCssText: 'z-index:100',
        formatter: function (params, ticket, callback) {
          console.log('params', params.value);
          //根据业务自己拓展要显示的内容
          var res = ''
          var name = params.name
          var value = params.value[params.seriesIndex + 1] || params.value
          res = "<span style='color:#fff;'>" + name + '</span><br/>数据:' + value
          return res
        }
      },

      //是视觉映射组件,用于进行『视觉编码』,也就是将数据映射到视觉元素(视觉通道)。
      visualMap: {
        // 左下角定义 在选中范围中的视觉元素 渐变地区颜色
        type: "piecewise", // 类型为分段型
        top: "bottom",
        // calculable: true, //是否显示拖拽用的手柄(手柄能拖拽调整选中范围)。
        right: 10,
        splitNumber: 6,
        seriesIndex: [0],
        itemWidth: 20, // 每个图元的宽度
        itemGap: 2, // 每两个图元之间的间隔距离,单位为px
        pieces: [
          // 自定义每一段的范围,以及每一段的文字
          // { gte: 10000, label: "10000人以上", color: "#1890FF" }, // 不指定 max,表示 max 为无限大(Infinity)。
          {
            gte: 90,
            lte: 100,
            label: "90%-100%",
            color: "#007D7B",
          },
          {
            gte: 80,
            lte: 90,
            label: "80%-90%",
            color: "#0FA081",
          },
          {
            gte: 60,
            lte: 80,
            label: "60%-80%",
            color: "#F1C40E",
          },
          {
            gte: 0,
            lte: 60,
            label: "≤60%",
            color: "#2B80B9",
          },
          // { lte: 0, label: "无", color: "#FAFAFA" }, // 不指定 min,表示 min 为无限大(-Infinity)。
        ],
        textStyle: {
          color: "#737373",
        },
      },
      series: [
        {
          tooltip: {
            trigger: 'item',
          },

          name: '上海安徽浙江数据',
          type: 'map',
          map: '上海安徽浙江', // 自定义扩展图表类型
          showLegendSymbol: true, // 存在legend时显示
          label: { // 文字
            show: true,
            color: '#fff',
            fontSize: 10
          },
          itemStyle: { // 地图样式
            // areaColor: '#282C34',  //区域颜色
            // borderColor: '#ffffff',  //边框颜色
            // borderWidth: 1
            normal: {
              areaColor: '#0c274b',
              borderColor: '#1cccff',
              borderWidth: 1.5
            },
            emphasis: {
              areaColor: '#02102b',
              label: {
                color: '#fff'
              }
            }
          },
          emphasis: { // 鼠标移入时显示的默认样式
            itemStyle: {
              areaColor: '#4adcf0',
              borderColor: '#404a59',
              borderWidth: 1
            },
            label: { // 文字
              show: true,
              color: '#0D5EFF',
              fontSize: 12,
              fontWeight: 600
            },
          },
          data: data
          // [
          //   //自定义区域的颜色
          //   {
          //     name: '金华市',

          //   }
          // ],
        },
        // 区域散点图
        {
          type: 'effectScatter',
          coordinateSystem: 'geo',
          zlevel: 2,
          symbolSize: 10,
          rippleEffect: {
            //坐标点动画
            period: 3,
            scale: 5,
            brushType: 'fill'
          },
          label: {
            normal: {
              show: true,
              position: 'right',
              formatter: '{b}',
              color: '#b3e2f2',
              fontWeight: 'bold',
              fontSize: 18
            }
          },

          data: [{ name: '上海', value: [121.472644, 31.231706] }],
          itemStyle: {
            //坐标点颜色
            normal: {
              show: true,
              color: 'green',
              shadowBlur: 20,
              shadowColor: '#fff'
            },
            emphasis: {
              areaColor: '#f00'
            }
          }
        },

        // 飞线
        {
          type: 'lines',
          zlevel: 1,
          effect: {
            show: true,
            period: 4, // 箭头指向速度,值越小速度越快
            trailLength: 0.1, // 特效尾迹长度[0,1]值越大,尾迹越长重
            symbol: 'arrow', // 箭头图标
            symbolSize: 10 // 图标大小
          },
          lineStyle: {
            normal: {
              width: 1, // 尾迹线条宽度
              opacity: 1, // 尾迹线条透明度
              curveness: 0.3 // 尾迹线条曲直度
            }
          },
          data: [
            {
              fromName: '台州',
              toName: '嘉兴',
              coords: [
                [121.428599, 28.661378], // 起始
                [120.750865, 30.762653] // 结束
              ]
            }
          ]
        },

        // 气泡,用于突出目的地
        {
          type: 'effectScatter',
          coordinateSystem: 'geo', // 使用地理坐标系
          // 要有对应的经纬度才显示,先经度再维度
          data: [
            { name: '台州', value: [121.428599, 28.661378] }
          ],
          showEffectOn: 'render', // 绘制完成后显示特效
          rippleEffect: {
            scale: 4, // 波纹的最大缩放比例
            brushType: 'stroke'
          },
          hoverAnimation: true,
          label: { // 图形上的文本标签
            show: true,
            formatter: '{b}',
            position: 'right',
            fontWeight: 500,
            fontSize: 10
          },
          // 默认样式
          itemStyle: {
            color: '#32cd32',
            shadowBlur: 10,
            shadowColor: '#333'
          },
          // 鼠标移入时样式
          emphasis: {
            itemStyle: {
              color: '#f4e925' // 高亮颜色
            }
          },
          zlevel: 1
        },
        // 坐标用于突出起点
        {
          type: 'scatter',
          coordinateSystem: 'geo',
          zlevel: 2,
          rippleEffect: {
            period: 3,
            brushType: 'stroke',
            scale: 3
          },
          symbol: 'pin',
          symbolSize: 50,
          data: [
            {
              name: '嘉兴',
              value: [120.750865, 30.762653]
            }
          ]
        }
      ],
    }
    myEchart.setOption(option);
    window.addEventListener('resize', function () {
      myEchart.resize();
    });
  }

}

onMounted(() => {
  setOption()
})

</script>

<style scoped lang="scss">
.echart-demo {
  width: 800px;
  height: 600px;
}
</style>

地图的map.json数据自己获取

我是获取可上海、安徽、以及浙江省的市级子区域坐标

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值