series: [
// 定义地图类型,数据
{
name: "china",
type: "map",
mapType: "china",
data: provinces,
itemStyle: {
normal: {
borderWidth: 1, //边际线大小
borderColor: '#00ffff', //边界线颜色
areaColor: '#09295b' //默认区域颜色
},
emphasis: {
show: true,
areaColor: '#3066ba', //鼠标滑过区域颜色
label: {
show: true,
textStyle: {
color: '#fff'//鼠标经过字体颜色
}
}
}
},
label: {
normal: {
show: true,
textStyle: {
fontSize: 12,//字体大小
fontWeight: 'bold',
color: 'red'//字体颜色
}
},
emphasis: {
show: true
},
}
},
]