ConstructorOptions
Initialization options for the WebMapTileServiceImageryProvider constructor
See also
Properties
A object containing static dimensions and their values.
If true, WebMapTileServiceImageryProvider.pickFeatures will invoke the GetFeatureInfo operation on the WMTS server and return the features included in the response. If false, WebMapTileServiceImageryProvider.pickFeatures will immediately return undefined (indicating no pickable features) without communicating with the server. Set this property to false if you know your WMTS server does not support GetFeatureInfo or if you don't want this provider's features to be pickable. Defaults to true for KVP encoding. For RESTful encoding, defaults to true only when {@link WebMapTileServiceImageryProvider.ConstructorOptions#getFeatureInfoUrl} is specified, and false otherwise.
The formats in which to try WMTS GetFeatureInfo requests. Default value - WebMapTileServiceImageryProvider.DefaultGetFeatureInfoFormats
Additional parameters to include in GetFeatureInfo requests. Keys are lowercased internally.
The GetFeatureInfo URL of the WMTS service. If not specified, the value of url is used.
The maximum level-of-detail supported by the imagery provider, or undefined if there is no limit.
The minimum level-of-detail supported by the imagery provider. Default value - 0
The rectangle covered by the layer. Default value - Rectangle.MAX_VALUE
The subdomains to use for the {s} placeholder in the URL template. If this parameter is a single string, each character in the string is a subdomain. If it is an array, each element in the array is a subdomain. Default value - 'abc'
The tile height in pixels. Default value - 256
A list of identifiers in the TileMatrix to use for WMTS requests, one per TileMatrix level.
The identifier of the TileMatrixSet to use for WMTS requests.
The tiling scheme corresponding to the organization of the tiles in the TileMatrixSet.
TimeIntervalCollection with its data property being an object containing time dynamic dimension and their values.
The base URL for the WMTS GetTile operation (for KVP-encoded requests) or the tile-URL template (for RESTful requests). The tile-URL template should contain the following variables: {style}, {TileMatrixSet}, {TileMatrix}, {TileRow}, {TileCol}. The first two are optional if actual values are hardcoded or not required by the server. The {s} keyword may be used to specify subdomains.