首页 / 浏览问题 / WebGIS / 问题详情
如果场景中图层不止一个,webgl要怎么加载数据服务
55EXP 2024年05月09日

目前参考http://support.supermap.com.cn:8090/webgl/examples/webgl/editor.html#S3MTiles_BIM中的代码,加载数据服务用的是

layer.setQueryParameter({
 url:"//www.supermapol.com/realspace/services/data-BIMbuilding/rest/data",
 dataSourceName : "BIMBuilding",
  isMerge : true
});
datainfo(layer);

但是如果多图层的话,数据服务的dataSourceName就会有多个,要怎么一次加载所有图层的数据呢

1个回答

您好,您可以参照以下代码来设置

layer1.setQueryParameter({
 url:"//www.supermapol.com/realspace/services/data-BIMbuilding/rest/data",
 dataSourceName : "xxx",
  isMerge : true
});
layer2.setQueryParameter({
 url:"//www.supermapol.com/realspace/services/data-BIMbuilding/rest/data",
 dataSourceName : "xxx",
  isMerge : true
});

1,315EXP 2024年05月10日
...