获取 Autodesk Construction Cloud API 的问题

问题描述 投票:0回答:1

我们在收到 GET 问题请求的响应时遇到问题。 JSON 文件不包含 TwoDPushpin 位置的位置数据。它存储在Body中:结果-linkedDocuments-详细信息-位置(x,y,z)。在旧版 BIM360 中,它返回“position”:{“x”:-35.238098787487104,“y”:87.2047348022461,“z”:-11.452384532007851},在新 ACC 中,它返回“position”:{}。我们在多个文档上进行了测试,每个文档上都存在问题。请提供解决方案以检索 ACC 中链接文档问题图钉位置。

ACC API 文档链接

我们比较了以下 API:

回复:

{
  "linkedDocuments": [
    {
      "type": "TwoDVectorPushpin",
      "urn": "",
      "createdBy": "",
      "createdAt": "2024-02-22T08:45:15.820Z",
      "createdAtVersion": 1,
      "closedBy": null,
      "closedAt": null,
      "closedAtVersion": null,
      "details": {
        "viewable": {...},
        "position": {
          "x": -138.13512638138647,
          "y": -111.15485659241676,
          "z": 43.54259595148501
        },
      ...
}

回复:

{
  "linkedDocuments": [
    {
      "type": "TwoDRasterPushpin",
      "urn": "",
      "createdBy": null,
      "createdAt": "2024-05-02T06:58:27.331Z",
      "createdAtVersion": 1,
      "closedBy": null,
      "closedAt": null,
      "closedAtVersion": null,
      "details": {
        "viewable": {
          "id": "",
          "viewableId": "3",
          "guid": "",
          "name": "(3)",
          "is3D": false
        },
        "position": {},
        ...
}
autodesk-bim360 autodesk-construction-cloud
1个回答
0
投票

是的,这是 ACC 对问题的已知限制。 ACC 仅支持直接链接文档中 TwoDVectorPushpin(3D 模型)的图钉位置,与 BIM360 不同,BIM360 支持 TwoDVectorPushpin(3D 模型)和 TwoDRasterPushpin(2D 图纸和视图)。

有一个改进 ACC 问题的路线图,以匹配 BIM360 中的每个功能一段时间,但目前TwoDRasterPushpin模型

不支持此坐标位置
© www.soinside.com 2019 - 2024. All rights reserved.