Drone / 3D Tiles Viewer
Drone 3D Tiles Web Viewer
Drone models and terrain data are streamed to the browser via Cesium, supporting geospatial viewing and URL-based sharing.
View Live Demo ↓Core Technologies
Cesium
Open-source 3D geospatial platform — globe rendering with real-world coordinate systems.
3D Tiles (OGC)
OGC standard for hierarchical streaming of massive 3D datasets.
Browser Capabilities
Georeferenced Viewing
Models rendered at correct geographic coordinates on the Cesium globe.
Orbital Navigation
Free 3D camera — orbit, tilt, zoom into structural details.
Direct Measurement
Measure distances and areas on the 3D Tiles model.
Live Demo
viewer.js
import { Viewer, Cesium3DTileset, Terrain } from 'cesium';
const viewer = new Viewer('container', {
terrain: Terrain.fromWorldTerrain()
});
// Load 3D Tiles from tileset endpoint
const tileset = await Cesium3DTileset.fromUrl(
'https://tsvidev.com/api/v1/3dtiles/tileset.json',
{
maximumScreenSpaceError: 16,
dynamicScreenSpaceError: true,
preferLeaves: true
}
);
viewer.scene.primitives.add(tileset);
viewer.zoomTo(tileset);
// Adjust tileset height offset if needed
tileset.modelMatrix = Cesium.Transforms.headingPitchRollToFixedFrame(
tileset.boundingSphere.center,
new Cesium.HeadingPitchRoll(0, 0, 0)
);
Rotate, zoom, and interact with the model directly in the browser via WebGL.
Features
3D Tiles streaming with LOD based on camera distance
Globe/map rendering with real-world coordinates via Cesium
3D interaction: orbit, zoom, direct measurement
Overlay with point clouds, BIM, GIS in the same project
Accessible via URL — no browser restrictions
Supported Formats
Use Cases
Publish drone photogrammetry models to the web viewer.
Render terrain or survey regions on the Cesium globe.
Archive survey results over time for progress tracking.
Render 3D models on the Cesium globe with real-world coordinates.
FAQ
3D Tiles is an OGC standard for streaming massive 3D geospatial datasets. Data is split into hierarchical tiles, loaded on demand based on camera position.
Yes. Any 3D Tiles exported from Agisoft Metashape, Pix4D, DJI Terra, or similar tools can be uploaded.
Yes. TSVIDEV renders 3D Tiles on a Cesium globe with real-world CRS coordinates.
Each project supports up to 10GB total upload. Specific limits depend on the system storage configuration.
Learn More About TSVIDEV
Visit the homepage to explore projects and the latest features.
Go to TSVIDEV Home