首页 / 浏览问题 / 三维GIS / 问题详情
webgl多面体叠加,只有最上面的显示
2EXP 2018年11月02日

使用产品:iClient3D for WebGL 操作系统:win10 x64
问题详细描述:viewer.entities.add({
                    polygon: {
                        hierarchy: {
                            positions: cartesians
                        },
                        height: 0,
                        extrudedHeight: 50,
                        outline: true,
                        material: Cesium.Color.RED.withAlpha(0.5),
                    },
                    polygon: {
                        hierarchy: {
                            positions: cartesians
                        },
                        height:50,
                        extrudedHeight: 50,
                        outline: true,
                        material: Cesium.Color.RED.withAlpha(0.5),
                    }
                    ,
                    polygon: {
                        hierarchy: {
                            positions: cartesians
                        },
                        height: 100,
                        extrudedHeight: 50,
                        outline: true,
                        material: Cesium.Color.RED.withAlpha(0.5),
                    }
                });

制作楼体分层

结果只有上面的显示

1个回答

您好,一般来说一个entity对象里面只会有一个ploygon或者ployline对象,具体添加方式您可以参考http://support.supermap.com.cn:8090/webgl/examples/editor.html#polylineGlow

1,695EXP 2018年11月05日
...