6 Mar 2020

Minimizing Viewer workloads - loading models partially with selected components and features only

Quite curiously, we’ve often had inquiries about mechanisms to tree shake Viewer’s loading process and load only what’s minimally required to render the model or just a part of it, which is effective when it comes to boosting load times and overall performance under challenging conditions such as those on mobile devices. So let’s talk through some of the options available today.

One of the major difficulties when it comes to loading larger models is with loading the model database due to its huge size (could be several GBs) and limited bandwidth. To overcome this it is possible to suppress the loading of model data with the below options (and naturally relevant features such as the model data and property panels would be no longer available, see live demo here):

const options = { skipPropertyDb: true}
viewer.start/loadModel/loadDocumentNode(document, geometry,options)

Yet we can still access the model data by persisting it to our own data source through our own custom workflows, see this article here for more details.

And to cut down the rendering workloads we can selectively load only certain components/nodes of the model by passing in their dbids as an array to the load options (see live demo here):


const options = { ids:[1,2,3 ...] }
viewer.start/loadModel/loadDocumentNode(document,geometry,options)

It's also possible to suppress certain built-in features (measurement, sectioning etc.) that are loaded by default - simply try these with your initialization options below:

const options = {disabledExtensions: {
measure:true,
viewcube:true,
layermanage:true,
explode:true,
section:true
hyperlink:true,
bimwalk:true,
fusionOrbit:true
//...
}}
const viewer = new Autodesk.Viewing.GuiViewer3D(container, options)

You can check the viewer3D.js file's content for an up-to-date list of extensions you can disable for 2D and 3D views. In the case of v7.93 they are the following:

const ext2d = {
  viewcube: 'Autodesk.ViewCubeUi',
  measure: 'Autodesk.Measure',
  hyperlink: 'Autodesk.Hyperlink',
  layerManager: 'Autodesk.LayerManager',
  propertiesPanel: 'Autodesk.PropertiesManager'
};

const ext3d = {
  viewcube: 'Autodesk.ViewCubeUi',
  explode: 'Autodesk.Explode',
  bimwalk: 'Autodesk.BimWalk',
  fusionOrbit: 'Autodesk.Viewing.FusionOrbit',
  measure: 'Autodesk.Measure',
  section: 'Autodesk.Section',
  layerManager: 'Autodesk.LayerManager',
  modelBrowser: 'Autodesk.ModelStructure',
  propertiesPanel: 'Autodesk.PropertiesManager'
};

Furthermore we can switch to a GUIless version of Viewer without all the built-in GUI components including all the toolbars, panels etc. All functional APIs would remain available otherwise (but you'd still need to suppress built-in extensions manually):
 

const viewer = new Autodesk.Viewing.Viewer3D(container, options)

 

Now let’s put these through their paces and see the memory economy - this moderately large model would take several minutes to load and will take up around 100MB in memory (on Chrome v80 and Viewer v7.13):

sb

 

And we disabled the property database and chose to load just a few segments, everything turns up in a few seconds and memory dropped to under 20MB:

snn

 

Finally as a side note, with SVG elements (markups etc) we can to boost rendering performance using "transform" to set/move their positions as those translations would be GPU accelerated - see more here.

Related Article