223Echarts - 3D 地球(ECharts-GL Hello World)

效果图

在这里插入图片描述

源代码

option = {
    backgroundColor: '#000',
    globe: {
        baseTexture: "data-gl/asset/world.topo.bathy.200401.jpg",
        heightTexture: "data-gl/asset/world.topo.bathy.200401.jpg",
        displacementScale: 0.04,
        shading: 'realistic',
        environment: 'data-gl/asset/starfield.jpg',
        realisticMaterial: {
            roughness: 0.9
        },
        postEffect: {
            enable: true
        },
        light: {
            main: {
                intensity: 5,
                shadow: true
            },
            ambientCubemap: {
                texture: 'data-gl/asset/pisa.hdr',
                diffuseIntensity: 0.2
            }
        }
    }
};