vue+echarts5實現中國地圖的示例代碼

使用echarts5.0版本實現中國地圖,E charts在5.0版本之後,地圖不能直接引入瞭,需要自己去下載。

地圖文件下載地址:
下載地址
(http://datav.aliyun.com/portal/school/atlas/area_selector#&lat=30.772340792178525&lng=103.94573258937584&zoom=9.5)

註意: 將下載後的json文件放置/public目錄下

map類型的地圖

<template>
    <div>
        <div ref="mapEcharts" class="map-echart"></div>
    </div>
  
</template>

<script>
import * as echarts from 'echarts'
import axios from 'axios'

export default {
  name: "Map",
  data() {
    return {
      timer: null,
      seriesData: [
        {name: '天津市', value: 20057.34},
        {name: '北京市', value: 15477.48},
        {name: '上海市', value: 31686.1},
        {name: '河北省', value: 6992.6},
        {name: '山東省', value: 44045.49},
        {name: '山西省', value: 4045.49},
      ],
      map: null
    }
    
  },
  created() {
    
  },
  mounted(){
      this.initMapEcharts();
  },
  methods: {
    initMapEcharts() {
      // 獲取地圖數據
      // 將下載後的json文件放置/public目錄下
      axios.get('/china.json').then(res => {
          console.log(res);
         // 使用數據註冊地圖
         echarts.registerMap('china', res.data)
          this.$nextTick(() => {
            // 初始化地圖
            this.map = echarts.init(this.$refs['mapEcharts'])
            // 設置基礎配置項
            const option = {
              // 標題
              title: {
                text:"中國地圖",
                left: 'center',
                subtext: "下載鏈接",
                sublink: "http://datav.aliyun.com/tools/atlas/#&lat=30.772340792178525&lng=103.94573258937584&zoom=9.5"
              },
              // 懸浮窗
              tooltip: {
                trigger: 'item',
                formatter: function(params) {
                  return `${params.name}: ${params.value || 0}`

                }
              },
              // 圖例
              visualMap: {
                min: 800,
                max: 50000,
                text: ['High', 'Low'],
                realtime: false,
                calculable: true,
                inRange: {
                    color: ['lightskyblue', 'yellow', 'orangered']
                }
              },
              // 要顯示的散點數據
              series: [
                {
                  type: 'map',
                  map: 'china',
                  // 這是要顯示的數據
                  data: this.seriesData,
                  // 自定義命名映射,不設置的話,label默認是使用 geoJson中的name名
                  nameMap: {
                    '北京市': "北京重命名",
                    "天津市": '天津重命名'
                  },
                },
                
              ]
            }
            // 將配置應用到地圖上
            this.map.setOption(option)
            // 設置定時器,自動循環觸發tooltip懸浮窗事件
            this.setTimer()
            let that = this;
            // 當鼠標在地圖上時,停止自動tooltip事件
            this.map.on('mouseover', {series: 0,}, function(params) {
              that.clearTimer()
            })
            // 當鼠標移出地圖後,再自動tooltip
            this.map.on('mouseout', {series: 0}, function(params) {
              that.setTimer()
            })
          })
      })
    },
    setTimer() {
      // 當前選中區域的下標
      let curIndex = -1;
      this.timer && clearInterval(this.timer)
      this.timer = setInterval(() => {
        const len = this.seriesData.length;
        // dispatchAction是主動去觸發echarts事件,取消高亮當前的數據圖形
        this.map.dispatchAction({
          type: 'downplay',
          seriesIndex: 0,
          dataIndex: curIndex
        })
        // 下一個選中區域的下標
        curIndex = (curIndex + 1) % len;
        // 高亮下一個數據圖形
        this.map.dispatchAction({
          type: 'highlight',
          seriesIndex: 0,
          dataIndex: curIndex
        })
        // 顯示tooltip
        this.map.dispatchAction({
          type: 'showTip',
          seriesIndex:0,
          dataIndex: curIndex
        })
      }, 1000)
    },
    clearTimer() {
      this.timer && clearInterval(this.timer)
    },
  },
  
  beforeDestroy() {
    this.clearTimer()
  }
}
</script>

<style>
.map-echart {
  height: 900px;
  width: 900px;
}
</style>

在這裡插入圖片描述

geo類型地圖

<template>
    <div>
        <div ref="geoEcharts" class="geo-echart"></div>
    </div>
  
</template>

<script>
import * as echarts from 'echarts'
import axios from 'axios'
import { color } from 'echarts'

export default {
  name: "Geo",
  data() {
    return {
      timer: null,
      seriesData: [
        {name: '天津市', value: 20057.34},
        {name: '北京市', value: 15477.48},
        {name: '上海市', value: 31686.1},
        {name: '河北省', value: 6992.6},
        {name: '山東省', value: 44045.49},
        {name: '山西省', value: 4045.49},
      ],
      map: null
    }
    
  },
  created() {
    
  },
  mounted(){
      this.initGeoEcharts();
  },
  methods: {
    initGeoEcharts() {
      axios.get('/china.json').then(res => {
         echarts.registerMap('china', res.data)
          this.$nextTick(() => {
            const map = echarts.init(this.$refs['geoEcharts'], null, {renderer:'svg'})
            const option = {
              title: {
                text:"中國地圖",
                left: 'center',
                subtext: "下載鏈接",
                sublink: "http://datav.aliyun.com/tools/atlas/#&lat=30.772340792178525&lng=103.94573258937584&zoom=9.5"
              },
              // 懸浮窗
              tooltip: {
                trigger: 'item',
                formatter: function(params) {
                  console.log(2222, params);
                  return `${params.name}: ${params.value || 0}`

                }
              },
              // 圖例
              visualMap: {
                min: 800,
                max: 50000,
                text: ['High', 'Low'],
                realtime: false,
                calculable: true,
                inRange: {
                    color: ['lightskyblue', 'yellow', 'orangered']
                }
              },
              geo: {
                map: 'china',
                zoom: 1,
                roam: 'move',
                nameMap: {
                  '新疆維吾爾自治區': "新疆",
                  "西藏自治區": '西藏',
                  "甘肅省": "甘肅",
                  "寧夏回族自治區": "寧夏",
                  "廣西壯族自治區": "廣西",
                  "內蒙古自治區": "內蒙古",
                  "香港特別行政區": "香港",
                  "澳門特別行政區": "澳門"
                },
                label: {
                  show: true,
                  color: 'black',
                  position: "inside",
                  distance: 0,
                  fontSize: 10,
                  rotate:45
                },
                // 所有地圖的區域顏色
                itemStyle: {
                  areaColor: 'rgba(0,60,153,0.8)',
                  borderColor: '#02c0ff'
                },
                emphasis: {
                  itemStyle: {
                    areaColor: 'rgba(0,60,153,0.5)',
                    shadowColor: 'rgba(0,0,0,0.8)',
                    shadowBlur: 5,
                    shadowOffsetY: 5
                  }
                },
                // 針對某些區域做一些特別的樣式
                // regions: [{
                //   name: '廣東省',
                //   itemStyle: {
                //     areaColor: 'yellow',
                //     color: 'black',
                //     borderColor: 'pink'
                //   }
                // }]
              },  
              // 數據
              series: [
                {
                  type: 'scatter',
                  coordinateSystem: 'geo',
            	  data: [
                    {name: '江蘇省', value:[120.15, 31.99, 9]}, // 值為,經緯度,數據
                    {name: '湖北省', value: [111, 31.89, 15477]},
                    {name: '四川省', value: [102.15, 31.89, 31686]},
                    {name: '浙江省', value: [120.15, 29.89, 6992]},
                    {name: '山東省', value: [118.15, 36.9, 44045]}
                  ],
                  SymbolSize: 4
                },
                {
                  type: 'lines',
                  coordinateSystem: 'geo',
                  data: [
                    {coords: [[121.15,38], [111, 31.89], [100.15, 31.89],[121.15, 29.89], [105.15, 30.89]]}
                  ],
                  polyline: true, // 是否是多段線
                  lineStyle: {
                    color: {
                      type: 'radial',
                      x: 0.5,
                      y: 0.5,
                      r: 0.5,
                      colorStops: [{
                          offset: 0, color: 'red' // 0% 處的顏色
                      }, {
                          offset: 1, color: 'blue' // 100% 處的顏色
                      }],
                      global: false, // 缺省為 false
                      shadowColor: 'rgba(0, 0, 0, 0.5)',
                      shadowBlur: 10,
                      curveness: 1
                    },
                    opacity: 0.3,
                    width: 2,
                  },
                  // 線特效的配置
                  effect: {
                    show: true,
                    period: 5, // 特效動畫的時間,單位為 s
                    trailLength: 1, //特效尾跡長度[0,1]值越大,尾跡越長重
                    // symbol: 'image://' + require('@/echartsMap/money.png'), // 自定義動畫圖標
                    symbolSize: 15, //圖標大小
                    color:"red"
                  }
                }
                
              ]
            }
            map.setOption(option)
          })
      })
    }
  },
}
</script>

<style>
.geo-echart{
  height: 900px;
  width: 900px;
}
</style>

在這裡插入圖片描述

 到此這篇關於vue+echarts5實現中國地圖的示例代碼的文章就介紹到這瞭,更多相關vue echarts5中國地圖內容請搜索WalkonNet以前的文章或繼續瀏覽下面的相關文章希望大傢以後多多支持WalkonNet!

推薦閱讀: