app/docs/other/geo.md
2024-08-05 06:00:07 +08:00

1.2 KiB

title, icon, order, category
title icon order category
地理分布 globe 1 其他

:::echarts Liteyuki Dist

const option = {
    backgroundColor: '#454545',
    title: {
        text: 'LiteyukiBot分布demo',
        subtext: 'LiteyukiBot分布',
        textStyle: {
            color: '#fff',
            fontSize: 20
        },
        top: '10px',
        left: '10px'
    },
    geo: {
        map: 'world',
        roam: false,
        itemStyle: {
            normal: {
                areaColor: '#000',
                borderType: null, // 设置边界线类型为无
                borderColor: '#000', // 设置边界线颜色

            },
            emphasis: {
                areaColor: '#000',
                borderType: null, // 设置边界线类型为无
                borderColor: '#000', // 设置边界线颜色
            }
        },
        regions: [] // 先保留为空
    },
    series: [{
        // 散点效果
        type: 'scatter',
        coordinateSystem: 'geo', // 表示使用的坐标系为地理坐标系
        symbolSize: 5, // 设置散点的大小为20
        itemStyle: {
            color: '#ffeb3b', // 黄色
        },
    }],
    textStyle: {
        fontSize: 1
    }
};