我正在尝试使用 Archilogic 嵌入模块在我的 next.js 项目中显示 3d 平面图。
我正在尝试下面的代码,它说:TypeError: ArchilogicEmbed is not a constructor
import React, { useEffect } from "react";
import dynamic from "next/dynamic";
//import ArchilogicEmbed from "@archilogic/embed-api";
const Archilogic = () => import("@archilogic/embed-api");
const ArchilogicEmbed = dynamic(Archilogic, {
ssr: false,
});
export default function Dashboard() {
useEffect(() => {
async function demo() {
const embedEl = document.getElementById('mapid')
const embedEl = document.getElementById("mapid");
const viewer = ArchilogicEmbed(embedEl, {
transparentBackground: true,
//presentationMode: PresentationMode.jumpToCameraDefault,
minimap: false,
showTitle: false,
showLogo: false,
lowResTexturesOnly: false, // prevent hi-res textures from loading, gives a loading-time performance boost at the cost of visual quality
bookmarksActive: false, // control whether the bookmarks menu should be open or closed
uiButtons: {
birdMode: false,
personMode: false,
fullscreen: false,
bookmarkStrip: false,
share: false,
help: false,
presentation: false,
exportImage: false,
},
});
// await for the viewer embed to be ready
await viewer.viewerReadyPromise.catch((err) =>
console.error("viewer couldnt be initialized", err)
);
const demoSceneId = <sceneId>;
const publishableToken = <token>;
const tokenOptions = { publishableToken };
await viewer.loadScene(demoSceneId, tokenOptions).catch((err) => {
// scene couldn't be loaded - it may be private or the ID couldn't be found
console.error("There was an error loading the scene:", err);
});
}
demo();
}, []);
}
如何将 ArchilogicEmbed 与 Next.js 一起使用?
这是我正在关注的链接。此链接上的示例显示 ArchilogicEmbed 作为构造函数来初始化查看器,然后将其显示在页面上。