@basemaps/landing 6.28.1 → 6.29.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (34) hide show
  1. package/CHANGELOG.md +12 -0
  2. package/dist/android-chrome-192x192.png +0 -0
  3. package/dist/android-chrome-512x512.png +0 -0
  4. package/dist/apple-touch-icon.png +0 -0
  5. package/dist/assets/fonts/OpenSans-Bold.woff2 +0 -0
  6. package/dist/assets/fonts/OpenSans-Italic.woff2 +0 -0
  7. package/dist/assets/fonts/OpenSans-Light.woff2 +0 -0
  8. package/dist/assets/fonts/OpenSans-Regular.woff2 +0 -0
  9. package/dist/assets/fonts/OpenSans-SemiBold.woff2 +0 -0
  10. package/dist/assets/logo-linz.svg +256 -0
  11. package/dist/assets/logo-nz-govt.svg +11 -0
  12. package/dist/basemaps-card.jpeg +0 -0
  13. package/dist/examples/index.html +33 -0
  14. package/dist/examples/index.leaflet.xyz.3857.html +43 -0
  15. package/dist/examples/index.maplibre.compare.3857.html +111 -0
  16. package/dist/examples/index.maplibre.opacity.3857.html +218 -0
  17. package/dist/examples/index.maplibre.vector.3857.html +48 -0
  18. package/dist/examples/index.openlayers.attribution.wmts.3857.html +55 -0
  19. package/dist/examples/index.openlayers.wmts.3857.html +49 -0
  20. package/dist/examples/index.openlayers.xyz.3857.html +49 -0
  21. package/dist/favicon-16x16.png +0 -0
  22. package/dist/favicon-32x32.png +0 -0
  23. package/dist/favicon.ico +0 -0
  24. package/dist/index-6.29.0-053c6b9b5e501b18.js +575 -0
  25. package/dist/index-6.29.0-433a0509539c3f0c.js +35288 -0
  26. package/dist/index-6.29.0-f61958521df787d6.css +4317 -0
  27. package/dist/index.css +4317 -0
  28. package/dist/index.html +26 -0
  29. package/dist/index.js +575 -0
  30. package/dist/json-schema/stac-basemaps-extension/1.0/schema.json +144 -0
  31. package/dist/lib/attribution-6.29.0-431936fcac8e2647.js +2318 -0
  32. package/dist/lib/attribution-6.29.0-a5dcb359f35150b9.js +10 -0
  33. package/dist/lib/attribution.js +10 -0
  34. package/package.json +5 -5
@@ -0,0 +1,144 @@
1
+ {
2
+ "$schema": "http://json-schema.org/draft-07/schema#",
3
+ "$id": "https://basemaps.linz.govt.nz/json-schema/stac-basemaps-extension/1.0/schema.json#",
4
+ "title": "LINZ Basemaps Extension",
5
+ "description": "STAC LINZ Basemaps extension to a SATC item and STAC collection.",
6
+ "oneOf": [
7
+ {
8
+ "allOf": [
9
+ {
10
+ "$ref": "https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/item.json"
11
+ },
12
+ {
13
+ "$ref": "#/definitions/common"
14
+ },
15
+ {
16
+ "$ref": "#/definitions/item"
17
+ }
18
+ ]
19
+ },
20
+ {
21
+ "allOf": [
22
+ {
23
+ "$ref": "https://schemas.stacspec.org/v1.0.0-beta.2/collection-spec/json-schema/collection.json"
24
+ },
25
+ {
26
+ "$ref": "#/definitions/common"
27
+ },
28
+ {
29
+ "$ref": "#/definitions/collection"
30
+ }
31
+ ]
32
+ }
33
+ ],
34
+ "definitions": {
35
+ "common": {
36
+ "type": "object",
37
+ "required": ["stac_extensions"],
38
+ "properties": {
39
+ "stac_extensions": {
40
+ "type": "array",
41
+ "contains": {
42
+ "enum": ["https://basemaps.linz.govt.nz/json-schema/stac-basemaps-extension/1.0/schema.json"]
43
+ }
44
+ }
45
+ }
46
+ },
47
+ "item": {
48
+ "type": "object",
49
+ "properties": {
50
+ "properties": {
51
+ "type": "object",
52
+ "properties": {
53
+ "linz:gdal:version": {
54
+ "type": "string"
55
+ }
56
+ }
57
+ }
58
+ }
59
+ },
60
+ "collection": {
61
+ "type": "object",
62
+ "properties": {
63
+ "summaries": {
64
+ "type": "object",
65
+ "properties": {
66
+ "proj:epsg": {
67
+ "type": "array",
68
+ "items": {
69
+ "type": "number"
70
+ }
71
+ },
72
+ "linz:zoom": {
73
+ "type": "object",
74
+ "required": ["min", "max"],
75
+ "properties": {
76
+ "min": {
77
+ "type": "number"
78
+ },
79
+ "max": {
80
+ "type": "number"
81
+ }
82
+ }
83
+ },
84
+ "linz:priority": {
85
+ "type": "array",
86
+ "minItems": 1,
87
+ "maxItems": 1,
88
+ "items": {
89
+ "type": "number"
90
+ }
91
+ },
92
+ "linz:output": {
93
+ "type": "array",
94
+ "contains": {
95
+ "properties": {
96
+ "resampling": {
97
+ "type": "object",
98
+ "properties": {
99
+ "warp": {
100
+ "type": "string"
101
+ },
102
+ "overview": {
103
+ "type": "string"
104
+ }
105
+ }
106
+ },
107
+ "quality": {
108
+ "type": "number"
109
+ },
110
+ "cutlineBlend": {
111
+ "type": "number"
112
+ },
113
+ "addAlpha": {
114
+ "type": "boolean"
115
+ }
116
+ }
117
+ }
118
+ },
119
+ "linz:generated": {
120
+ "type": "array",
121
+ "contains": {
122
+ "properties": {
123
+ "package": {
124
+ "type": "string"
125
+ },
126
+ "version": {
127
+ "type": "string"
128
+ },
129
+ "hash": {
130
+ "type": "string"
131
+ },
132
+ "datetime": {
133
+ "type": "string",
134
+ "format": "date-time"
135
+ }
136
+ }
137
+ }
138
+ }
139
+ }
140
+ }
141
+ }
142
+ }
143
+ }
144
+ }