interface WMTSTileSetModelCreateOptions {
    credentials?: boolean;
    dataType?: RasterDataType;
    dimensions?: object;
    format?: string;
    preferredRequestEncoding?: WMTSRequestEncoding;
    reference?: CoordinateReference;
    requestHeaders?: null | HttpRequestHeaders;
    requestParameters?: null | HttpRequestParameters;
    samplingMode?: RasterSamplingMode;
    tileMatrixSet?: string;
    url?: string;
    useQuadTreeOnly?: boolean;
}

Hierarchy (view full)

Properties

credentials?: boolean

Whether credentials should be included with every HTTP request.

dataType?: RasterDataType

Configures the model's RasterDataType.

The ELEVATION raster data type will only have an effect in a 3D map, and acts as a way of representing 3D terrain visually. The ELEVATION dataType will not be visualized as a colorized heightmap as it only affects the 3D height values of the surface of the earth.

The default is IMAGE.

2024.0

dimensions?: object

Dimension parameters to send along with WMTS GetTile request. Typical dimensions areTIME and ELEVATION. The object literal can contain simple key/value pairs. Accepted values are strings, numbers, booleans. Values must not be URL encoded.

2021.0

format?: string

The image format of the images to retrieve from the WMTS server

preferredRequestEncoding?: WMTSRequestEncoding

Indicates the preferred encoding of the WMTS request operations. If the WMTS server does not support the supplied preferredRequestEncoding, we fall back to another request encoding supported by the WMTS server.

WMTSRequestEncoding.KVP

2024.1

The preferred spatial reference of the tile matrix set, if it is not explicitly defined using tileMatrixSet. If no tile matrix set can be found for the given reference, an error is thrown.

requestHeaders?: null | HttpRequestHeaders

An object literal that represents headers (as a key-value map) to send with each HTTP request. If set (and not empty), an XHR with the specified headers will be performed instead of creating an Image.

requestParameters?: null | HttpRequestParameters

Custom request parameters to send along with WMTS GetMap and GetFeatureInfo request. The object literal can contain simple key/value pairs (strings, numbers, booleans). Values must not be URL encoded.

2021.0

samplingMode?: RasterSamplingMode

Configures the model's RasterSamplingMode, corresponding to the setting representation of the underlying raster data.

For AREA. For POINT.

For elevation, samplingMode POINT is recommended for performance and accuracy.

2024.0

tileMatrixSet?: string

The identifier of the tile matrix set. Will be computed automatically if not defined.

url?: string

root URI of the GetTile request interface. Use this when you want to override the URI reported in the capabilities object.

2021.0.04

useQuadTreeOnly?: boolean

Indicates that the WMTS tile set model creation must aim for quad-tree tile set structures only. The default behavior is to allow non-quad tree tile matrix sets.

2023.0