Tile matrix sets

Retrieve the list of available tiling schemes (tile matrix sets)

get
Responses
200
List of tile matrix sets (tiling schemes).
application/json
get
GET /maps/vector/ngd/ota/v1/tilematrixsets HTTP/1.1
Host: api.os.uk
Accept: */*
{
  "tileMatrixSets": [
    {
      "id": "text",
      "title": "text",
      "uri": "https://example.com",
      "crs": "https://example.com",
      "links": [
        {
          "href": "http://data.example.com/buildingpart/123",
          "rel": "alternate",
          "type": "application/geo+json",
          "templated": true,
          "varBase": "/ogcapi/vars/",
          "hreflang": "en",
          "title": "Building Part",
          "length": 1
        }
      ]
    }
  ]
}

Retrieve the definition of the specified tiling scheme (tile matrix set)

get
Path parameters
tileMatrixSetIdstring · enumRequired

Identifier for a supported TileMatrixSet

Possible values:
Responses
200
tile matrix set
application/json
get
GET /maps/vector/ngd/ota/v1/tilematrixsets/{tileMatrixSetId} HTTP/1.1
Host: api.os.uk
Accept: */*
{
  "title": "text",
  "id": "text",
  "uri": "https://example.com",
  "orderedAxes": [
    "text"
  ],
  "crs": "https://example.com",
  "wellKnownScaleSet": "https://example.com",
  "tileMatrices": [
    {
      "id": "text",
      "scaleDenominator": 1,
      "cellSize": 1,
      "cornerOfOrigin": "topLeft",
      "pointOfOrigin": [
        1
      ],
      "tileWidth": 1,
      "tileHeight": 1,
      "matrixHeight": 1,
      "matrixWidth": 1
    }
  ]
}

Last updated

Was this helpful?