WMTS Tile (Image Service)

URL:
https://<wmts-url>/tile/<wmts-version>/<layer>/<style>/<tilematrixset>/<tilematrix>/<tilerow>/<tilecol>.<format>
Methods:
GET
Required Capability:
Image
Version Introduced:
10.1

Description

An individual WMTS Tile resource represents a single cached tile, which is a fragment of an image in the context of the OGC WMTS specification. You can request WMTS tiles in both RESTful and Key-Value Pairs (KVP) syntax as defined by the OGC WMTS specification.

URL tokens

URL tokenDetails

layer

(Required)

The layer identifier. The value must be a valid layer identifier advertised in WMTS service metadata (GetCapabilities response).

Example

Use dark colors for code blocksCopy
1
layer=0

style

The style identifier. The value must be a valid style identifier advertised in WMTS service metadata (GetCapabilities response).

Example

Use dark colors for code blocksCopy
1
style=default

tilematrixset

(Required)

The TileMatrixSet identifier. The TileMatrixSet is a concept in the OGC WMTS specification that is similar to Tiling Schema. The value must be the identifier of one of the TileMatrixSet advertised in WMTS service metadata (GetCapabilities response) that includes a well-known TileMatrixSet such as Google Maps or ArcGIS Online, or a customized TileMatrixSet defined by the service publisher.

Example

Use dark colors for code blocksCopy
1
tileMatrixSet=google_maps

tilematrix

(Required)

The TileMatrix identifier. The values must be the identifier of one of the TileMatrix defined in a particular TileMatrixSet.

Example

Use dark colors for code blocksCopy
1
tileMatrix=tileMatrix0

tilerow

(Required)

The row index of a tile matrix.

Example

Use dark colors for code blocksCopy
1
tilerow=0

tilecol

(Required)

The column index of a tile matrix.

Example

Use dark colors for code blocksCopy
1
tilecol=0

Example:

format

(Required)

The output format of the tile.

Example

Use dark colors for code blocksCopy
1
format=png

Example usage

The following is a sample request URL used to access a WMTS Tile resource:

Use dark colors for code blocksCopy
1
https://machine.domain.com/webadaptor/rest/services/Toronto/ImageServer/WMTS/tile/1.0.0/Toronto/default/default028mm/13/2990/2289.png

The following is a sample request URL used to access a WMTS Tile resource:

Use dark colors for code blocksCopy
1
https://machine.domain.com/webadaptor/rest/services/Toronto/ImageServer/WMTS?service=WMTS&version=1.0.0&request=gettile&layer=WorldTimeZones&style=default&tileMatrixSet=default028mm&tileMatrix=13&TileRow=2990&TileCol=2289&format=image/png

Your browser is no longer supported. Please upgrade your browser for the best experience. See our browser deprecation post for more details.