VUE中使用ECharts實現中國地圖產品出貨量配置詳解

1、使用特效散點圖實現產品出貨TOP5顯示;
2、實現自定義懸浮提示框;

如下圖所示:
在這裏插入圖片描述

實現步驟

一、在vue中安裝echarts

npm install echarts

二、在vue組件中使用echarts
1、在組件中先引入echarts;

import echarts from 'echarts' // 引入echarts中國地圖數據

2、在組件中引入中國地圖數據;

require('echarts/map/js/china');

提示:地圖類的echarts實現是需要額外引入地圖數據。
見官網:https://echarts.baidu.com/option.html#geo.map

3、在組件頁面內定一個標籤來渲染地圖;

<div id="productMap" style='width:600px;height:500px;'></div>

4、初始化 echarts 實例和指定配置參數;

var vm = new Vue({
  el: '#productMap',
  data: {
    name_title: "全國各省產品銷量圖",
	subname: '',
	nameColor: "rgb(33, 75, 113)",
	name_fontFamily: '等線',
	subname_fontSize: 15,
	name_fontSize = 18,
	max: 480,
    min: 9; // todo 
	maxSize4Pin: 100,//散點圖最大尺寸
    minSize4Pin: 20;//散點圖最小尺寸
	mapName: 'china',
	geoCoordMap: {},
	chinaChart: echarts.init(document.getElementById('productMap'));// 初始化echarts實例
  },
  methods: {
    getGeoCoordMap: function () {
      /*獲取地圖數據*/
		let mapFeatures = echarts.getMap(this.mapName).geoJson.features;
		this.chinaChart.hideLoading();
		mapFeatures.forEach(function(v) {
		    // 地區名稱
		    let name = v.properties.name;
		    // 地區經緯度
		    geoCoordMap[name] = v.properties.cp;
		});
	    return this.geoCoordMap;
    },
    convertData: function(data) {
	    let res = [];
	    for (let i = 0; i < data.length; i++) {
	        var geoCoord = this.geoCoordMap[data[i].name];
	        if (geoCoord) {
	            res.push({
	                name: data[i].name,
	                value: geoCoord.concat(data[i].value),
	            });
	        }
	    }
	    return res;
	},
	getData: function(){
		//數據從接口中獲取,格式:
		/*
		data = [
			{
		        name: "北京",
		        value: 177
		    },
		    ...
	    ]
		*/
		return data;
	},
	getToolTipData: function(){
		//數據從接口中獲取
		let data = this.getData();
		let toolTipData = {};
		//通過解析data,返回toolTipData數據
		//格式:
		/*
		data = [[{
	        name: "北京",
	        value: [
		        {
		            name: "主機",
		            value: 95
		        }, {
		            name: "監控卡",
		            value: 82
		        }]
		    },
		    ...
		 ];
		*/
		return toolTipData;
	}
 },
 mounted () {掛載完畢後進行初始化地圖數據
  this.chinaChart.showLoading();
  // 進行相關配置
  this.chartOption = {
  title: {
        text: this.name_title,
        subtext: this.subname,
        x: 'center',
        textStyle: {
            color: this.nameColor,
            fontFamily: this.name_fontFamily,
            fontSize: this.name_fontSize
        },
        subtextStyle: {
            fontSize: this.subname_fontSize,
            fontFamily: this.name_fontFamily
        }
    },
    tooltip: {
        trigger: 'item',
        formatter: function(params) {
            if (typeof(params.value)[2] == "undefined") {
                let toolTiphtml = '';
                let toolTipData = this.getToolTipData();
                for (var i = 0; i < toolTipData.length; i++) {
                    if (params.name == toolTipData[i].name) {
                        toolTiphtml += toolTipData[i].name + '<br>'
                        for (var j = 0; j < toolTipData[i].value.length; j++) {
                            toolTiphtml += toolTipData[i].value[j].name + ':' + toolTipData[i].value[j].value + "<br>"
                        }
                    }
                }
                return toolTiphtml;
            } else {
                let toolTiphtml = '';
                for (var i = 0; i < toolTipData.length; i++) {
                    if (params.name == toolTipData[i].name) {
                        toolTiphtml += toolTipData[i].name + ':<br>'
                        for (var j = 0; j < toolTipData[i].value.length; j++) {
                            toolTiphtml += toolTipData[i].value[j].name + ':' + toolTipData[i].value[j].value + "<br>"
                        }
                    }
                }
                return toolTiphtml;
            }
        }
    },
    visualMap: {
        show: true,
        min: 0,
        max: 200,
        left: 'left',
        top: 'bottom',
        text: ['高', '低'], // 文本,默認爲數值文本
        calculable: true,
        seriesIndex: [1],
        inRange: {
            color: ['#00467F', '#A5CC82'] // 藍綠
        }
    },
    geo: {
        show: true,
        map: this.mapName,
        label: {
            normal: {
                show: false
            },
            emphasis: {
                show: false,
            }
        },
        roam: true,
        itemStyle: {
            normal: {
                areaColor: '#031525',
                borderColor: '#3B5077',
            },
            emphasis: {
                areaColor: '#2B91B7',
            }
        }
    },
    series: [{
            name: '散點',
            type: 'scatter',
            coordinateSystem: 'geo',
            data: this.convertData(this.getData()),
            symbolSize: function(val) {
                return val[2] / 10;
            },
            label: {
                normal: {
                    formatter: '{b}',
                    position: 'right',
                    show: true
                },
                emphasis: {
                    show: true
                }
            },
            itemStyle: {
                normal: {
                    color: '#05C3F9'
                }
            }
        },
        {
            type: 'map',
            map: this.mapName,
            geoIndex: 0,
            aspectScale: 0.75, //長寬比
            showLegendSymbol: false, // 存在legend時顯示
            label: {
                normal: {
                    show: true
                },
                emphasis: {
                    show: false,
                    textStyle: {
                        color: '#fff'
                    }
                }
            },
            roam: true,
            itemStyle: {
                normal: {
                    areaColor: '#031525',
                    borderColor: '#3B5077',
                },
                emphasis: {
                    areaColor: '#2B91B7'
                }
            },
            animation: false,
            data: data
        },
        {
            name: '點',
            type: 'scatter',
            coordinateSystem: 'geo',
            symbol: 'pin', //氣泡
            symbolSize: function(val) {
                var a = (this.maxSize4Pin - this.minSize4Pin) / (this.max - this.min);
                var b = this.minSize4Pin - a * this.min;
                b = this.maxSize4Pin - a * this.max;
                return a * val[2] + b;
            },
            label: {
                normal: {
                    show: true,
                    textStyle: {
                        color: '#fff',
                        fontSize: 9,
                    }
                }
            },
            itemStyle: {
                normal: {
                    color: '#F62157', //標誌顏色
                }
            },
            zlevel: 6,
            data: this.convertData(data),
        },
        {
            name: 'Top 5',
            type: 'effectScatter',
            coordinateSystem: 'geo',
            data: this.convertData(this.getData().sort(function(a, b) {
                return b.value - a.value;
            }).slice(0, 5)),
            symbolSize: function(val) {
                return val[2] / 10;
            },
            showEffectOn: 'render',
            rippleEffect: {
                brushType: 'stroke'
            },
            hoverAnimation: true,
            label: {
                normal: {
                    formatter: '{b}',
                    position: 'right',
                    show: true
                }
            },
            itemStyle: {
                normal: {
                    color: 'yellow',
                    shadowBlur: 10,
                    shadowColor: 'yellow'
                }
            },
            zlevel: 1
        },
    ]
  };
  
  // 使用剛指定的配置項和數據顯示地圖數據
  this.chinachart.setOption(this.chartOption)

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章