中国地图echarts scatter配置项内容和展示

配置项如下
      option = {
    backgroundColor: "#fff",
    geo: {
        map: 'china',
        label: {
            normal: {
                show: true
            },
            emphasis: {
                show: false
            }
        },
        itemStyle: {
            normal: {
                color: '#fff', //地图背景色
                borderColor: '#516a89', //省市边界线00fcff 516a89
                borderWidth: 1
            },
            emphasis: {
                color: '#fff' //悬浮背景
            }
        }
    },
    series: {
        type: 'scatter',
        coordinateSystem: 'geo',
        zlevel: 2,
        rippleEffect: {
            period: 4,
            brushType: 'stroke',
            scale: 4
        },
        label: {
            normal: {
                show: true,
                formatter: '{b}',
                textStyle: {
                    color: "#fff"
                }
            },
            emphasis: {
                show: true,
                color: "#fff"
            }
        },
        symbol: 'pin',
        symbolSize: 50,
        data: [{
            name: '昌平',
            value: [116.4551, 40.2539, 10]
        }, {
            name: '临沂',
            value: [118.1582, 36.8701, 10]
        }, {
            name: '南昌',
            value: [116.0046, 28.6633, 10]
        }],
    }
};
    
截图如下