I want to load the model locally. The model file is transferred to https://extract.autodesk.io. , it can be run on node.js, but failed to load on .net. The address of the file is not wrong, could you tell me what"s going on? "`
var initOptions = {
path: "r8/0.svf",
env: ""
}
function onEnvInitialized() {
var domContainer = document.getElementById("viewer")
var viewer = new Autodesk.Viewing.Private.GuiViewer3D(domContainer)
var result = viewer.start()
var core = viewer.loadModel(initOptions.path)
}
Autodesk.Viewing.Initializer(
initOptions,
function () {
onEnvInitialized()
})`