geo3D-simple.html 2.0 KB
<!doctype html>
<html>
    <head>
        <meta charset="utf-8">
        <title>Geo3D - 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="../dist/echarts-gl.js"></script>
        <script src="lib/jquery.min.js"></script>
        <script src="js/commonUI.js"></script>
        <script>
            echarts.registerMap('sample', {
                type: 'FeatureCollection',
                features: [{
                    type: 'Feature',
                    geometry: {
                        type: 'MultiPolygon',
                        coordinates: [
                            [
                                [
                                    [0, 0], [10, 0], [10, 10], [0, 10]
                                ].reverse(),
                                // Hole
                                [
                                    [2, 2], [8, 2], [8, 8], [2, 8]
                                ]
                            ],

                            [[
                                [20, 20], [30, 20], [30, 30], [20, 30]
                            ].reverse()]
                        ]
                    },
                    properties: {
                        name: 'Sample Rect'
                    }
                }]
            })
            var chart = echarts.init(document.getElementById('main'));

            chart.setOption({
                geo3D: {
                    map: 'sample',
                    bevelSize: 1
                },
                series: []
            });

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

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