cesium-native 0.46.0
Loading...
Searching...
No Matches
IonRasterOverlay.h
1#pragma once
2
3#include <CesiumAsync/IAssetRequest.h>
4#include <CesiumGeospatial/Ellipsoid.h>
5#include <CesiumRasterOverlays/Library.h>
6#include <CesiumRasterOverlays/RasterOverlay.h>
7
8#include <memory>
9
10namespace CesiumRasterOverlays {
11
15class CESIUMRASTEROVERLAYS_API IonRasterOverlay : public RasterOverlay {
16public:
32 const std::string& name,
33 int64_t ionAssetID,
34 const std::string& ionAccessToken,
35 const RasterOverlayOptions& overlayOptions = {},
36 const std::string& ionAssetEndpointUrl = "https://api.cesium.com/");
37 virtual ~IonRasterOverlay() override;
38
40 const CesiumAsync::AsyncSystem& asyncSystem,
41 const std::shared_ptr<CesiumAsync::IAssetAccessor>& pAssetAccessor,
42 const std::shared_ptr<CesiumUtility::CreditSystem>& pCreditSystem,
43 const std::shared_ptr<IPrepareRasterOverlayRendererResources>&
44 pPrepareRendererResources,
45 const std::shared_ptr<spdlog::logger>& pLogger,
47 const override;
48
49protected:
66 const std::string& name,
67 const std::string& overlayUrl,
68 const std::string& ionAccessToken,
69 bool needsAuthHeader,
70 const RasterOverlayOptions& overlayOptions = {});
71
72private:
73 std::string _overlayUrl;
74 std::string _ionAccessToken;
75 bool _needsAuthHeader = false;
76
77 struct AssetEndpointAttribution {
78 std::string html;
79 bool collapsible = true;
80 };
81
82 struct ExternalAssetEndpoint {
83 std::string externalType;
84 std::string url;
85 std::string mapStyle;
86 std::string key;
87 std::string culture;
88 std::string accessToken;
89 std::vector<AssetEndpointAttribution> attributions;
90 };
91
92 static std::unordered_map<std::string, ExternalAssetEndpoint> endpointCache;
93
95 const ExternalAssetEndpoint& endpoint,
96 const CesiumAsync::AsyncSystem& asyncSystem,
97 const std::shared_ptr<CesiumAsync::IAssetAccessor>& pAssetAccessor,
98 const std::shared_ptr<CesiumUtility::CreditSystem>& pCreditSystem,
99 const std::shared_ptr<IPrepareRasterOverlayRendererResources>&
100 pPrepareRendererResources,
101 const std::shared_ptr<spdlog::logger>& pLogger,
103};
104
105} // namespace CesiumRasterOverlays
A system for managing asynchronous requests and tasks.
Definition AsyncSystem.h:36
A value that will be available in the future, as produced by AsyncSystem.
Definition Promise.h:12
A RasterOverlay that obtains imagery data from Cesium ion.
IonRasterOverlay(const std::string &name, const std::string &overlayUrl, const std::string &ionAccessToken, bool needsAuthHeader, const RasterOverlayOptions &overlayOptions={})
Creates a new instance.
IonRasterOverlay(const std::string &name, int64_t ionAssetID, const std::string &ionAccessToken, const RasterOverlayOptions &overlayOptions={}, const std::string &ionAssetEndpointUrl="https://api.cesium.com/")
Creates a new instance.
virtual CesiumAsync::Future< CreateTileProviderResult > createTileProvider(const CesiumAsync::AsyncSystem &asyncSystem, const std::shared_ptr< CesiumAsync::IAssetAccessor > &pAssetAccessor, const std::shared_ptr< CesiumUtility::CreditSystem > &pCreditSystem, const std::shared_ptr< IPrepareRasterOverlayRendererResources > &pPrepareRendererResources, const std::shared_ptr< spdlog::logger > &pLogger, CesiumUtility::IntrusivePointer< const RasterOverlay > pOwner) const override
Begins asynchronous creation of a tile provider for this overlay and eventually returns it via a Futu...
The base class for a rasterized image that can be draped over a Cesium3DTilesSelection::Tileset....
A smart pointer that calls addReference and releaseReference on the controlled object.
Classes for raster overlays, which allow draping massive 2D textures over a model.
Options for loading raster overlays.