首页 / 浏览问题 / 三维GIS / 问题详情
瓦片数据不存在
4EXP 2019年07月25日

            //场景添加S3M图层服务
            var promise = scene.addS3MTilesLayerByScp('http://localhost:8090/iserver/services/3D-s3m_test/rest/realspace/datas/config/config',{
                name : 'config'
            });

 
            Cesium.when(promise,function(layer){
                //设置相机位置,定位至模型
                scene.camera.setView({
                    //将经度、纬度、高度的坐标转换为笛卡尔坐标
                    destination : Cesium.Cartesian3.fromDegrees(118.54909017414182,24.80259473610606,105.40531821331771),
                    orientation : {
                        heading : 5.154573786584606,
                        pitch : -0.14229615865957967,
                        roll :3.2294167340296553e-12
                    }
                });
            },function(e){
                if (widget._showRenderLoopErrors) {
                    var title = '渲染时发生错误,已停止渲染。';
                    widget.showErrorPanel(title, undefined, e);
                }
            });

提示了下面这个:

  • isSucceed : false
  • error :
    • code    : 404
    • errorMsg    : 请求url /iserver/services/3D-s3m_test/rest/realspace/datas/data/config/path/Data/Data.s3m 与资源map3DDataConfig 的 url 模板不匹配

1个回答

您好,您这个问题原因是资源找不到。

您直接访问http://localhost:8090/iserver/services/3D-s3m_test/rest/realspace/datas/config/config这个地址,看下里面有没有东西呢?

6,215EXP 2019年07月25日
...