IfcViewerApi.getProperties
简介: 该函数用于获取选定构件的属性。
方法原型:
getProperties(id, onSuccess, onError)
参数介绍:
示例代码:
viewer.getProperties('1REjBO5wH7PwvJ08x7VWyf',function(properties){
console.log(properties);
},function(error){
console.log(error);
});
说明: 以上代码用于获取ID为'1REjBO5wH7PwvJ08x7VWyf'的构件的属性。其中,如果属性获取成功,则会打印属性信息;如果失败,则会打印错误信息。