変換された rvt ファイルに含まれるすべての 2D および 3D モデルのリストを取得しようとしています。
古い例を見る: LmvNavTest彼らはこのようなことをして、「ドキュメント」の rootItem にアクセスします
Autodesk.Viewing.Document.load(fullUrnStr, function(document) {
_loadedDocument = document; // keep this in a global var so we can reference it in other spots
// get all the 3D and 2D views (but keep in separate arrays so we can differentiate in the UX)
_views3D = Autodesk.Viewing.Document.getSubItemsWithProperties(document.getRootItem(), {'type':'geometry', 'role':'3d'}, true);
_views2D = Autodesk.Viewing.Document.getSubItemsWithProperties(document.getRootItem(), {'type':'geometry', 'role':'2d'}, true);
私の理解から、現在好ましい方法はloadModelを使用することです
oViewer =new Autodesk.Viewing.Private.GuiViewer3D ($("#viewerContainer") [0], {}) ;
oViewer.loadModel (url , [], onLoadSuccess, onLoadFail) ;
loadModel の方法で行う場合、ドキュメントにアクセスして getSubItemsWithProperties メソッドを呼び出すにはどうすればよいですか