echarts 5.1.0 的中国地图的立体投影的配置选项

发布时间 2023-10-13 14:28:46作者: 幻世无双520
{
                        geo: [
                            // 背景投影
                            {
                                map: "china",
                                //
                                layoutCenter: ["50%", "50.4%"],
                                layoutSize: "98%",
                                itemStyle: {
                                    normal: {
                                        areaColor: "#868686",
                                    },
                                },
                                // 背景投影-隐藏自动添加的
                                regions: [
                                    {
                                        name: "南海诸岛",
                                        itemStyle: {
                                            normal: {
                                                opacity: 0,
                                                label: {
                                                    show: false,
                                                },
                                            },
                                        },
                                    },
                                ],
                            },
                            // 真实地图
                            {
                                map: "china",
                                //
                                label: {
                                    show: false,
                                },
                                layoutCenter: ["50%", "50%"],
                                itemStyle: {
                                    normal: {
                                        areaColor: "#EDEDED",
                                    },
                                },
                            },
                        ],
                    }