Locating aggregated svf models properly

162 Views Asked by At

In order to show several svf models converted from revit files the following code is used and it works:

const modelFileUrls = 
[{
    modelId: 9,
    url: "{url}/Resource/3D view/BIM360 1746305/BIM360.svf",
    globalOffset: {
    x: 3701854.1994750663,
    y: 3001199.973753281,
    z: 0  
  }
},
{
    modelId: 10,
    url: "{url}/Resource/3D view/3D/3D.svf",
    globalOffset: {
    x: 3701853.805774279,
    y: 3001199.973753281,
    z: 0
  }
}]

const div = document.getElementById("forge-viewer")
let viewer = new Autodesk.Viewing.Private.GuiViewer3D(div, config3d)
viewer.initialize()

// Models loading
modelFileUrls.forEach(model => {
    viewer.loadModel(
        model.url, {
            loadAsHidden: false,
            keepCurrentModels: true,
            globalOffset: model.globalOffset,
            applyRefPoint: true,
            isAEC: true
        }
    )
})

Parameter 'globalOffset' was taken from AEC.json.

The problem is to locate models properly in the shared area. I mean, how can I arrange building of one construction queue properly to set revit coorditates 'N/S', 'E/W', 'Angle to True North' for each? Now models appeare with no rotation and the position is wrong. enter image description here

0

There are 0 best solutions below