Add existing to tracked

This commit is contained in:
Jay
2026-08-11 09:53:42 -04:00
parent afe07f3055
commit ffd6e3d73c
8531 changed files with 4396230 additions and 0 deletions
+43
View File
@@ -0,0 +1,43 @@
import DeveloperError from "../Core/DeveloperError.js";
/**
* Provides imagery to be displayed on the surface of an ellipsoid. This type describes an
* interface and is not intended to be instantiated directly.
*
* @alias PanoramaProvider
* @constructor
* @abstract
*
* @see GoogleStreetViewCubeMapPanoramaProvider
* @see EquirectangularPanorama
* @see CubeMapPanorama
*
* @demo {@link https://sandcastle.cesium.com/index.html?id=panorama|Cesium Sandcastle Panorama}
*/
function PanoramaProvider() {
DeveloperError.throwInstantiationError();
}
Object.defineProperties(PanoramaProvider.prototype, {});
/**
* Returns a panorama provider.
*
* @param {object} options Input options to create the panorama provider.
* @returns {PanoramaProvider} The panorama provider for loading panoramas into a scene.
*/
PanoramaProvider.fromUrl = function (options) {
DeveloperError.throwInstantiationError();
};
/**
* Returns a panorama primitive.
*
* @param {object} options Input options to create the panorama primitive.
* @returns {Panorama} The panorama primitive for displaying panoramas in a scene.
*/
PanoramaProvider.prototype.loadPanorama = function (options) {
DeveloperError.throwInstantiationError();
};
export default PanoramaProvider;