globe-layer2.html 3.2 KB
<!doctype html>
<html>
    <head>
        <meta charset="utf-8">
        <title>Globe Layers - ECHARTS-GL</title>
        <meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
        <meta name="apple-mobile-web-app-capable" content="yes"> <!-- Fullscreen Landscape on iOS -->
        <link rel="stylesheet" href="./common.css">
    </head>
    <body>
        <div id="main"></div>
        <script src="../node_modules/echarts/dist/echarts.js"></script>
        <script src="https://cdn.jsdelivr.net/npm/echarts@4.9.0/map/js/world.js"></script>
        <script src="https://cdn.jsdelivr.net/npm/echarts@4.9.0/map/js/china.js"></script>
        <script src="../dist/echarts-gl.js"></script>
        <script src="lib/jquery.min.js"></script>
        <script src="js/commonUI.js"></script>
        <script>
            var chart = echarts.init(document.getElementById('main'));

            var canvas = document.createElement('canvas');
            var mapChart = echarts.init(canvas, null, {
                width: 4096,
                height: 2048
            });

            mapChart.setOption({
                series : [
                    {
                        type: 'map',
                        map: 'world',
                        top: 0,
                        left: 0,
                        right: 0,
                        bottom: 0,
                        boundingCoords: [[-180, 90], [180, -90]],
                        silent: true,
                        itemStyle: {
                            normal: {
                                borderColor: 'rgb(50, 50, 150)',
                                color: 'transparent'
                            }
                        }
                    }
                ]
            });

            // http://visibleearth.nasa.gov/view_cat.php?categoryID=1484
            chart.setOption({
                globe: {
                    baseTexture: 'asset/earth.jpg',
                    heightTexture: 'asset/elev_bump_4k.jpg',

                    displacementScale: 0.1,

                    shading: 'lambert',

                    light: {
                        ambient: {
                            intensity: 0.1
                        },
                        main: {
                            intensity: 1.5
                        }
                    },

                    viewControl: {
                        autoRotate: false
                    },

                    layers: [{
                        type: 'blend',
                        blendTo: 'albedo',
                        texture: mapChart
                    }, {
                        type: 'blend',
                        blendTo: 'emission',
                        texture: 'asset/night.jpg'
                    }, {
                        type: 'overlay',
                        texture: 'asset/clouds.png',
                        shading: 'lambert',
                        distance: 5
                    }]
                },
                series: []
            });

            window.addEventListener('resize', function () {
                chart.resize();
            });

        </script>
    </body>
</html>