There is a feature in the acc viewer that allows you to jump to the corresponding position in the model by selecting a point and direction on the screen enter image description here enter image description here
This seems to involve a method of converting the points on the drawing to the model space, and I have tried many times, such as focusing the model through dbid, but I have not achieved this effect.
let viewer = this.viewer;
if (param) {
viewer.clearSelection()
viewer.isolate(param.dbIdArray)
viewer.fitToView(param.dbIdArray)
}
this.viewer.addEventListener(window.Autodesk.Viewing.SELECTION_CHANGED_EVENT, function(selected) {
console.log(selected)
viewer.selectedDbIdArray = selected.dbIdArray;
viewer.model.getProperties(selected.dbIdArray[0], function(props) {
console.log(props)
});
});
Is there anyone who can help me.