-
Notifications
You must be signed in to change notification settings - Fork 11
/
tileMatrixSet.json
63 lines (63 loc) · 1.88 KB
/
tileMatrixSet.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"$schema": "https://json-schema.org/draft/2019-09/schema",
"title": "Tile Matrix Set Definition",
"description": "A definition of a tile matrix set following the Tile Matrix Set standard. For tileset metadata, such a description (in `tileMatrixSet` property) is only required for offline use, as an alternative to a link with a `http://www.opengis.net/def/rel/ogc/1.0/tiling-scheme` relation type.",
"type": "object",
"required": ["crs", "tileMatrices"],
"properties": {
"title": {
"description": "Title of this tile matrix set, normally used for display to a human",
"type": "string"
},
"description": {
"description": "Brief narrative description of this tile matrix set, normally available for display to a human",
"type": "string"
},
"keywords": {
"description": "Unordered list of one or more commonly used or formalized word(s) or phrase(s) used to describe this tile matrix set",
"type": "array",
"items": {
"type": "string"
}
},
"id": {
"description": "Tile matrix set identifier. Implementation of 'identifier'",
"type": "string"
},
"uri": {
"description": "Reference to an official source for this tileMatrixSet",
"type": "string",
"format": "uri"
},
"orderedAxes": {
"type": "array",
"minItems": 1,
"items": {
"type": "string"
}
},
"crs": { "allOf": [
{ "description": "Coordinate Reference System (CRS)" },
{ "$ref": "crs.json" }
] },
"wellKnownScaleSet": {
"description": "Reference to a well-known scale set",
"type": "string",
"format": "uri"
},
"boundingBox":
{ "allOf": [
{ "description": "Minimum bounding rectangle surrounding the tile matrix set, in the supported CRS" },
{ "$ref": "2DBoundingBox.json" }
] },
"tileMatrices":
{
"type": "array",
"description": "Describes scale levels and its tile matrices",
"items":
{
"$ref": "tileMatrix.json"
}
}
}
}