I followed the instructions in this article to make a vite project with cesium;
Originally I tried simply copying static resources to Vite's public folder. This doesn't work, the cesium engine promptly starts making invalid MIME requests for some reason. You must use some ported webpack plugin to copy Cesium node_modules apparently... I don't understand these build tools enough to know why that is.
There is another Cesium example project here pretty much like this one;
Following instructions here;
Change constructor arguments to avoid using online resources;
I set up an Cesium Ion account for myself
This account is used throughout their tutorials to deliver terrain, textures, tiles, etc.
-
Format Guides;
-
Example Cesium projects in Sandcastle;
-
Cesium has a variety of ways to load tiles
-
We might consider generating our own tileset to host with something like GDAL or GeoTools. Maybe some online SaaS like MapTiler...