首页 / 浏览问题 / 三维GIS / 问题详情
使用S3MTilesLayer加载S3M图层问题。
82EXP 2018年04月18日
//new S3MTilesLayer instance
var S3MTilesLayer = new S3MTilesLayer({
 gl : gl,
 servers : ["http://localhost:8090"],
 urls : ["http://localhost:8090/data/tile_001.xml","http://localhost:8090/data/tile_002.xml"],
 position : [10,20],
 name : ["S3MTilesLayer"]
});

在参考中,看到的代码,其中urls中介绍是包含xml的地址的数组。但是我通过超图桌面端,进行生成S3M的缓存文件夹中只有如下文件:

请问参考中,要求的xml怎么获得?

1个回答

首先你要通过iServer发布工作空间。

然后的代码

具体可以参考范例:

http://support.supermap.com.cn:8090/webgl/examples/editor.html#S3MTiles_BIM

核心方法: scene.addS3MTilesLayerByScp(url,{name : 'BIMBuilding'});

5,560EXP 2018年04月18日
...