Questions tagged [autodesk-viewer]

The Autodesk Viewer enables your customers to visualize and interact with 2D and 3D design data in a web browser or on a mobile device, anytime, anywhere. No downloads or plug-ins required.

The Viewer is a WebGL-based, JavaScript library for 3D and 2D model rendering. 3D and 2D model data may come from a wide array of applications, such as AutoCAD, Fusion 360, Revit, and many more.

The API supports over 60 file formats to bring you stunning, detailed, high-fidelity visualizations of models - right within your browser experience. The REST and JavaScript APIs make it easy for you to quickly develop web applications.

The Viewer requires a WebGL-canvas compatible browser:

  • Chrome 50+
  • Firefox 45+
  • Opera 37+
  • Safari 9+
  • Microsoft Edge 20+
  • Internet Explorer 11

Learn more about Autodesk Viewer.

1738 questions
2
votes
1 answer

Forge Viewer: Properties Window

The Properties window does not populate any properties even though the 2D view has properties info for the selected room Here is the function that loads the model. what am I missing? function loadModel() { var initialViewable =…
InsaneKarma
  • 75
  • 1
  • 8
2
votes
1 answer

Autodesk Forge Viewer v7: MarkupsCore Extension

I couldn't find any documentation for MarkupsCore Extension for the Viewer v7 from here. Is there any reason or did I miss something? I want to know can I refer to previous versions documentation even if I'm using the Viewer v7?
2
votes
1 answer

leaveEditMode from Autodesk.Viewing.MarkupsCore not show toolbar

I have an extension where I set a Button to enter to edit mode from Markup extension: buttonMarkup.onClick = function (e) { let markupExtension = viewer.getExtension('Autodesk.Viewing.MarkupsCore'); markupExtension.enterEditMode(); …
Hans Felix Ramos
  • 4,264
  • 3
  • 16
  • 40
2
votes
1 answer

Autodesk Forge Viewer v7 - setThemingColor

I hope somebody can help me with a question about the setThemingColor function for the Autodesk Forge Viewer. Basically my issue is that when I run the viewer.setThemingColor(dbId, new Vector4( 1, 1, 1, 1 ), null, true ) from within my code…
2
votes
1 answer

Autodesk Forge Viewer v7: Open PDFs

I have some questions to the Viewer v7 and I cannot find any answers in the tutorials an API-References. What I want to do: I want to upload PDFs to Forge using Forge Datamanagment API and then open it via the Viewer What I have managed to do so…
Andreas
  • 309
  • 1
  • 8
2
votes
1 answer

Accessing multiple page of pdf file using Autodesk.PDF without transformation on viewer V7

I'm using the Viewer V7 and the Autodesk.PDF extension in order to show a multipage pdf. This is a source fragment: var pdf = 'http://localhost/test.pdf'; Autodesk.Viewing.Initializer(optionsLocal, function onInitialized() { viewer = new…
2
votes
1 answer

Forge Autodesk Viewer window is truncated after resizing

We have an app where we have a collapsible side panel and Forge Viewer window side by side. When we collapse the side panel the forge viewer windows seems to get resized, but actually the viewer doesn't get fully resized. The Navigation Cube and…
Santrro
  • 58
  • 7
2
votes
2 answers

How to resize on object - Autodesk Forge Viewer

How can i change size of on object ?? i need to change height of on object For example, we need to change the height of a door or curtain on this code my object disappears let change = function () { const viewer = oViewer; const model =…
2
votes
1 answer

resize an object in three.js / Autodesk 3D Viewer (Autodesk Forge Viewer)

How do I resize and move or translate an object? This change is such that I have to move the curtain up or down I need to resize or position an object Animated or in one place (no difference) viewer3D : LMV v3.3.6 try…
2
votes
1 answer

Updating view with setViewCube in v7

How do i update the view using setViewCube in v7? I was using the following code in v6, but it doesn't work in v7. viewer.setViewCube('[top/front]'); In the migration guide v6 to v7 it says, I should call it through the…
Joni Turunen
  • 137
  • 1
  • 13
2
votes
5 answers

How to remove toolbar buttons in Autodesk Forge Viewer version 7

I am trying to remove toolbar buttons in the new version 7 of Autodesk Forge Viewer. Please refer my below code: viewer.addEventListener(Autodesk.Viewing.TOOLBAR_CREATED_EVENT, (e) => { console.log(e); let modelTools =…
2
votes
1 answer

Viewer not reading certain data from 3ds Max

Kindly see this image for the reference: Seems like adding a Opacity map with an Aplha channel output is not working, as this isn't reflected in the SVF file after the translation of the .MAX file containing Opacity maps. Is Opacity maps supported…
T. Pex
  • 73
  • 9
2
votes
1 answer

Loading models with different units into Forge viewer

If I first load a model into the viewer with units meter and then loads a model with units millimeter, the last loaded model is scaled wrong. It's location is way off and it is 1000 times too big. It looks like the viewer thinks the second model is…
FrodeTo
  • 83
  • 1
  • 10
2
votes
1 answer

What IFC versions are supported in Autodesk Forge?

We are working on an integration of an external software with Autodesk Forge. Following openBIM, we want to focus on model data in IFC format. Question is (and I was not able to find this answer online) which IFC versions are supported in the Forge…
2
votes
1 answer

Forge Viewer Events documentation

I have found a few Autodesk.Viewing.SOME_EVENT events floating around in samples, currently using these: viewer.addEventListener(Autodesk.Viewing.SELECTION_CHANGED_EVENT,…
r.schmitt
  • 53
  • 1
  • 10