调整地图上标签文字的大小echarts 地图配置项内容和展示

如何在放大缩小的时候调整地图上标签文字的大小

配置项如下
      option = {
    tooltip: {
        trigger: 'item',
        formatter: '{b}'
    },
    series: [
        {
            roam:true,
            name: '中国',
            type: 'map',
            mapType: 'china',
            selectedMode : 'multiple',
            label: {
                normal: {
                    show: true,
                    fontSize:18
                },
                emphasis: {
                    show: true,
                    fontSize:35
                }
            },
            data:[
                {name:'广东', selected:true}
            ]
        }
    ]
};
    
截图如下