cesium-native 0.43.0
|
Options for tile map service accesses. More...
#include <CesiumRasterOverlays/TileMapServiceRasterOverlay.h>
Public Attributes | |
std::optional< std::string > | fileExtension |
The file extension for images on the server. | |
std::optional< std::string > | credit |
A credit for the data source, which is displayed on the canvas. | |
std::optional< uint32_t > | minimumLevel |
The minimum level-of-detail supported by the imagery provider. | |
std::optional< uint32_t > | maximumLevel |
The maximum level-of-detail supported by the imagery provider. | |
std::optional< CesiumGeometry::Rectangle > | coverageRectangle |
The CesiumGeometry::Rectangle , in radians, covered by the image. | |
std::optional< CesiumGeospatial::Projection > | projection |
The CesiumGeospatial::Projection that is used. | |
std::optional< CesiumGeometry::QuadtreeTilingScheme > | tilingScheme |
The CesiumGeometry::QuadtreeTilingScheme specifying how the ellipsoidal surface is broken into tiles. | |
std::optional< uint32_t > | tileWidth |
Pixel width of image tiles. | |
std::optional< uint32_t > | tileHeight |
Pixel height of image tiles. | |
std::optional< bool > | flipXY |
An otion to flip the x- and y values of a tile map resource. | |
Options for tile map service accesses.
Definition at line 20 of file TileMapServiceRasterOverlay.h.
std::optional<CesiumGeometry::Rectangle> CesiumRasterOverlays::TileMapServiceRasterOverlayOptions::coverageRectangle |
The CesiumGeometry::Rectangle
, in radians, covered by the image.
Definition at line 52 of file TileMapServiceRasterOverlay.h.
std::optional<std::string> CesiumRasterOverlays::TileMapServiceRasterOverlayOptions::credit |
A credit for the data source, which is displayed on the canvas.
Definition at line 30 of file TileMapServiceRasterOverlay.h.
std::optional<std::string> CesiumRasterOverlays::TileMapServiceRasterOverlayOptions::fileExtension |
The file extension for images on the server.
Definition at line 25 of file TileMapServiceRasterOverlay.h.
std::optional<bool> CesiumRasterOverlays::TileMapServiceRasterOverlayOptions::flipXY |
An otion to flip the x- and y values of a tile map resource.
Older versions of gdal2tiles.py flipped X and Y values in tilemapresource.xml
. Specifying this option will do the same, allowing for loading of these incorrect tilesets.
Definition at line 82 of file TileMapServiceRasterOverlay.h.
std::optional<uint32_t> CesiumRasterOverlays::TileMapServiceRasterOverlayOptions::maximumLevel |
The maximum level-of-detail supported by the imagery provider.
This will be std::nullopt
if there is no limit.
Definition at line 46 of file TileMapServiceRasterOverlay.h.
std::optional<uint32_t> CesiumRasterOverlays::TileMapServiceRasterOverlayOptions::minimumLevel |
The minimum level-of-detail supported by the imagery provider.
Take care when specifying this that the number of tiles at the minimum level is small, such as four or less. A larger number is likely to result in rendering problems.
Definition at line 39 of file TileMapServiceRasterOverlay.h.
std::optional<CesiumGeospatial::Projection> CesiumRasterOverlays::TileMapServiceRasterOverlayOptions::projection |
The CesiumGeospatial::Projection
that is used.
Definition at line 57 of file TileMapServiceRasterOverlay.h.
std::optional<uint32_t> CesiumRasterOverlays::TileMapServiceRasterOverlayOptions::tileHeight |
Pixel height of image tiles.
Definition at line 73 of file TileMapServiceRasterOverlay.h.
std::optional<uint32_t> CesiumRasterOverlays::TileMapServiceRasterOverlayOptions::tileWidth |
Pixel width of image tiles.
Definition at line 68 of file TileMapServiceRasterOverlay.h.
std::optional<CesiumGeometry::QuadtreeTilingScheme> CesiumRasterOverlays::TileMapServiceRasterOverlayOptions::tilingScheme |
The CesiumGeometry::QuadtreeTilingScheme
specifying how the ellipsoidal surface is broken into tiles.
Definition at line 63 of file TileMapServiceRasterOverlay.h.