0

我想在我的 Forgeviewer(版本 7.3)中阅读我的 otg 格式的 bim360 模型。这些项目已使用https://otg-bim.herokuapp.com/应用程序进行了转换。

有没有关于如何让我的 Forge 查看器从 Bim360 读取 otg 格式的指南?我找到了这个指南(https://github.com/wallabyway/OTG-client-sample/blob/552c78b1fe8e1177f6694fd947a17fd189a8505b/public/js/ForgeViewer.js#L26-L29),但是它使用我在其中找到的 Autodesk.Viewing.ViewingApplication Forge API 的第 2 版,但不在 7.3 版中。

4

3 回答 3

0

好像是同一个svn。错误是选项需要自动化,即使我已经通过 bim360 登录进行了自动化。在那里提供访问令牌,取消注释 useCookie 和 useCrentials 并且它可以工作。

 const options = {
    env: 'FluentProduction',
    api: 'fluent',
    //useCookie: false,  
    //useCredentials: false,
    accessToken: "add access token even though you are allready authorized in in bim360"
  };

到目前为止,我已经看到使用 otg 加载的显着改进 :-)。

于 2020-01-17T07:07:06.077 回答
0

使用存储桶而不是 bim360 时,最新版本的 svf2 可以正常工作。我没有用bim360验证它。对我有帮助的示例代码是这个 npm 包。https://www.npmjs.com/package/ng2-adsk-forge-viewer

于 2021-10-13T06:17:47.403 回答
0

您可以使用此版本的 ForgeViewer.js 来使用最新版本的查看器。https://github.com/jaimerosales/OTG-client-sample/blob/master/public/js/ForgeViewer.js

于 2020-01-13T17:45:58.143 回答