IfcViewerApi.openDropboxWindow方法用于在浏览器中打开 Dropbox 文件选择器对话框,允许用户选择一个 IFC 文件。选择完毕后,将自动在 IfcViewer 中打开选中文件。
IfcViewerApi.openDropboxWindow(callback, options)
以下示例演示如何使用 IfcViewerApi.openDropboxWindow 方法:
IfcViewerApi.openDropboxWindow(function(fileId) {
// 在此处使用 fileId 打开选择的 IFC 文件。
}, {
appKey: "YOUR_DROPBOX_APP_KEY",
linkType: "direct",
multiselect: false
});
在实际使用中,需要将 "YOUR_DROPBOX_APP_KEY" 替换为有效的 Dropbox 应用程序 App Key。