首页 / 浏览问题 / 三维GIS / 问题详情
cesium中 如何调整s3m图层位置
31EXP 2018年08月28日
cesium中,使用addS3MTilesLayerByScp 加载S3M图层如何调整其位置,如高度

1个回答

调高度的话,layer.style3D.bottomAltitude = 10
5,560EXP 2018年08月28日
没效果额
var promise = scene.addS3MTilesLayerByScp('http://localhost:8090/iserver/services/3D-tianyuandy/rest/realspace/datas/Config/config', {
                name: 'Config'
            });

            promise.then(function (obliqueLayers) {
                configLayer = scene.layers.find('Config');
                configLayer.style3D.bottomAltitude = 10;
那你试试这样写:


var style3D = new Cesium.Style3D();

style3D.bottomAltitude = 10;

layer.style3D = style3D;
...