const option = {
visualMap: {
type: 'continuous',
show: true,
bottom: '5%',
left: '2%',
text: ['高', '低'],
min: 0,
max: 100,
inRange: {
color: ['#fff', '#A0CFFF', '#409EFF'],
},
calculable: true,
},
tooltip: {
trigger: 'item',
formatter: function (item) {
if (item.name == '南海诸岛') {
return ''
} else {
return item.name + '<br>业务数据:' + (item.value || 0) + ' 个'
}
},
},
series: [
{
type: 'map',
map: 'china',
name: '业务数据',
aspectScale: 0.75,
zoom: 1.2,
roam: true,
mapType: '自定义地图',
selectedMode: 'single',
showLegendSymbol: false,
itemStyle: {
normal: {
color: '#ccc',
borderColor: '#303133',
areaColor: '#d4f7fc',
borderWidth: 0.5,
label: {
show: true,
fontSize: 12,
textStyle: {
color: '#606266',
},
},
},
emphasis: {
areaColor: '#4382F6',
borderColor: '#fff',
areaStyle: {
color: '#fff',
},
label: {
show: true,
fontSize: 12,
textStyle: {
color: '#003767',
},
},
},
},
data: this.mapData,
},
],
}