0

https://forge.autodesk.com/en/docs/bim360/v1/tutorials/pushpins/create-pushpin/文档示例中,它显示了如何创建与文档相关的(图钉)问题,但它利用了 Autodesk Forge查看器获取文档中选定的工作表(attributes.sheet_metadata.sheetGuid)、工作表上的位置(attributes.pushpin_attributes.location)和视图状态(attributes.pushpin_attributes.viewer_state)以便传递给实际服务器-side POST /issues/v1/containers/{container-id}/quality-issues API 调用。

我需要的是仅调用服务器端 API,因为我需要自动输入数百个问题而不显示我添加到 BIM 360 的每个问题的查看器。有没有办法从 BIM 360 文档中获取工作表 GUID 到在没有查看器前端 API 的情况下插入调用,以及生成 issue.position 和 issue.viewerState 对象以传递给调用的编程方式?

我已经查看了我可以通过 api 创建文档(图钉)问题吗?,它指向相同的方向,但没有详细说明如何使用服务器端 API 来实现这一点。

var issue = PushPinExtensionHandle.getItemById('0');

var data = {

    sheet_metadata: { // `viewerApp.selectedItem` references the current sheet
      is3D: viewerApp.selectedItem.is3D(),
      sheetGuid: viewerApp.selectedItem.guid(),
      sheetName: viewerApp.selectedItem.name()
    },
    pushpin_attributes: { // Data about the pushpin
      type: 'TwoDVectorPushpin', // This is the only type currently available
      object_id: issue.objectId, // (Only for 3D models) The object the pushpin is situated on.
      location: issue.position, // The x, y, z coordinates of the pushpin.
      viewer_state: issue.viewerState // The current viewer state. For example, angle, camera, zoom.
    },
  }
};

我正在使用 NodeJS,但欢迎使用其他语言的任何代码示例。

4

1 回答 1

0

我通过在创建 BIM360 问题时对查看器发出的 HTTP 请求进行逆向工程来实现这一点。这是我使用 Node.js 从服务器端创建问题的代码:https ://github.com/petrbroz/poc-hololens-bim360/blob/develop/helpers/forge/bim360.js#L73-L131 。

于 2019-09-09T11:16:01.793 回答