I have set up CesiumJS using the following tutorial.
At the final stage when I build and run the application, I get the following error:
Could you please help me resolve this issue?
Many thanks in advance,
Oleg
I have set up CesiumJS using the following tutorial.
At the final stage when I build and run the application, I get the following error:
Many thanks in advance,
Oleg
I am sorry, what is dm?
Thanks!
Unfortunately, the support team wasn’t able to help me with this problem.
I managed to solve this issue by substituting
viewer.scene.primitives.add(createOsmBuildingsAsync());
by
const buildingTileset = await createOsmBuildingsAsync();
viewer.scene.primitives.add(buildingTileset);
in src/index.js.