cesium-native 0.43.0
Loading...
Searching...
No Matches
TilesetLoadFailureDetails.h
1#pragma once
2
3#include <memory>
4#include <string>
5
6namespace CesiumAsync {
7class IAssetRequest;
8}
9
10namespace Cesium3DTilesSelection {
11
12class Tileset;
13
17enum class TilesetLoadType {
21 Unknown,
22
27
32};
33
38public:
42 const Tileset* pTileset = nullptr;
43
48
52 uint16_t statusCode{200};
53
57 std::string message = "";
58};
59
60} // namespace Cesium3DTilesSelection
std::string message
A human-readable explanation of what failed.
TilesetLoadType type
The type of request that failed to load.
const Tileset * pTileset
The tileset that encountered the load failure.
A 3D Tiles tileset, used for streaming massive heterogeneous 3D geospatial datasets.
Definition Tileset.h:39
Classes that implement the 3D Tiles standard.
TilesetLoadType
The type of load that failed in TilesetLoadFailureDetails.
@ CesiumIon
A Cesium ion asset endpoint.
@ TilesetJson
The root tileset.json.
Classes that support asynchronous operations.