BIM 360 上翻译的视图名称

translated viewe name on BIM 360

有什么方法可以使用 Forge 在 BIM360 上查看翻译后的视图名称 API?

有 3 种方法可以做到这一点:

  1. manifest endpoint 包含该信息。请参阅下面示例中的名称 属性。
{
    "urn": "dXJuOmFkc2...bGFnZUJJTS5ydnQ",
    "derivatives": [
        {
            "hasThumbnail": "true",
            "children": [
                {
                    "guid": "53a6e995-4cf9-0aa6-c3ef-68a4b6150dbf",
                    "type": "geometry",
                    "role": "3d",
                    "name": "{3D}",
                    "viewableID": "8a8b24b1-b87d-4238-adcc-ef2c1ea155aa-0005d884",
                    "phaseNames": "Nouvelle construction",
                    "status": "success",
                    ...
                },
                {
                    "guid": "f16dbf36-6b14-4da3-abcd-5ff97b894304-0005da20",
                    "type": "geometry",
                    "role": "2d",
                    "name": "A101 - Sans nom",
                    "viewableID": "f16dbf36-6b14-4da3-abcd-5ff97b894304-0005da20",
                    "status": "success",
                    ...
                },
                ...
             ],
             ...
        },
        ...
}
  1. 如果您在查看器中 运行,您可以使用
doc.getRoot().search({
    type: 'geometry',
    //role: '3d' // optional filter, could be 2d or 3d, comment to get all
})