首页 / 浏览问题 / 三维GIS / 问题详情
在webgl中如何实现查询一个数据源中的多个数据集
5EXP 2018年08月06日
layer.setQueryParameter({

url:'',

dataSourceName:'',

dataSetName:'',

keyWord:''

});

1个回答

一个图层就应该对应一个数据集,为何要查询多个?如果你使用的批量生成模型缓存的话,查询参考范例:http://support.supermap.com.cn:8090/webgl/examples/editor.html#S3MTiles_BIM

接口:isMerge:true

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

5,985EXP 2018年08月06日
...