236Echarts - 3D 柱状图(Global Population - Bar3D on Globe)

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/qq_20042935/article/details/89876042

效果图

在这里插入图片描述

源代码

$.getJSON("data-gl/asset/data/population.json", function (data) {

    data = data.filter(function (dataItem) {
        return dataItem[2] > 0;
    }).map(function (dataItem) {
        return [dataItem[0], dataItem[1], Math.sqrt(dataItem[2])];
    });

    option = {
        backgroundColor: '#000',
        globe: {
            baseTexture: "data-gl/asset/world.topo.bathy.200401.jpg",
            heightTexture: "data-gl/asset/world.topo.bathy.200401.jpg",
            shading: 'lambert',
            environment: 'data-gl/asset/starfield.jpg',
            light: {
                main: {
                    intensity: 2
                }
            },
            viewControl: {
                autoRotate: false
            }
        },
        visualMap: {
            max: 40,
            calculable: true,
            realtime: false,
            inRange: {
                colorLightness: [0.2, 0.9]
            },
            textStyle: {
                color: '#fff'
            },
            controller: {
                inRange: {
                    color: 'orange'
                }
            },
            outOfRange: {
                colorAlpha: 0
            }
        },
        series: [{
            type: 'bar3D',
            coordinateSystem: 'globe',
            data: data,
            barSize: 0.6,
            minHeight: 0.2,
            silent: true,
            itemStyle: {
                color: 'orange'
            }
        }]
    };

    myChart.setOption(option);
})

猜你喜欢

转载自blog.csdn.net/qq_20042935/article/details/89876042
今日推荐