Option A — Easiest (iframe): Use a hosted viewer that accepts a model= URL param.
- Publish your model using a hosted Gaussian Splat viewer (e.g., SuperSplat) or your own viewer.
- Copy the share link (it should already include your model URL), then click Set viewer URL and paste.
- This page will embed it full‑screen with your Ninja‑360 chrome.
Option B — Self‑hosted viewer (advanced):
- Clone a web Gaussian Splat viewer that supports .splat/.ply.
- Host the viewer on your domain (or locally while testing).
- Upload your .splat next to the viewer and set the iframe src to the viewer URL with ?model=<your‑file‑URL>.
Embed snippet pattern you’ll commonly see:
<iframe
src="https://yourviewer.example.com/?model=https%3A%2F%2Fcdn.example.com%2Fscene.splat"
allowfullscreen
style="width:100%;height:600px;border:0"></iframe>
Pro tips: keep files small for mobile (quantize/decimate), host with HTTP range requests on, and enable CORS if the model is on a different domain.