1.安装echarts和echarts-map插件
npm install echarts --save npm install echarts-map --save
2.在组件中引入echarts和echarts-map
import echarts from 'echarts' import 'echarts/map/js/china' // 引入中国地图
3.在mounted钩子函数中初始化echarts实例
mounted () { // 初始化echarts实例 this.chart = echarts.init(this.$refs.map) // 绘制地图 this.drawMap() }
4.编写绘制地图的函数
drawMap () { // 地图数据 const geoData = require('echarts/map/json/china.json') // 注册地图 echarts.registerMap('china', geoData) // 绘制地图 this.chart.setOption({ tooltip: { trigger: 'item', formatter: '{b}<br/>{c} (件)' }, visualMap: { min: 0, max: 1000, left: 'left', top: 'bottom', text: ['高', '低'], calculable: true }, series: [ { name: '地图名称', type: 'map', mapType: 'china', roam: false, label: { normal: { show: true }, emphasis: { show: true } }, data: [ { name: '北京', value: 100 }, { name: '上海', value: 200 }, { name: '广州', value: 300 }, { name: '深圳', value: 400 }, { name: '杭州', value: 500 }, { name: '重庆', value: 600 }, { name: '成都', value: 700 }, { name: '武汉', value: 800 }, { name: '西安', value: 900 }, { name: '南京', value: 1000 } ] } ] }) }
5.在模板中添加echarts容器
<template> <div ref="map" style="width: 100%; height: 500px;"></div> </template>
标签:map,vue,绘制地图,name,value,echarts,china,Echarts From: https://www.cnblogs.com/czhowe/p/18230361