A minimal tile matrix set element for use within a list of tile matrix sets linking to a full definition.
| Name | Type |
|---|---|
id |
TileMatrixSetId |
title |
string |
uri |
string |
crs |
TilesCrs |
links |
Array<Link> |
import type { TileMatrixSetItem } from '@geoengine/api-client'
// TODO: Update the object below with actual values
const example = {
"id": null,
"title": null,
"uri": null,
"crs": null,
"links": null,
} satisfies TileMatrixSetItem
console.log(example)
// Convert the instance to a JSON string
const exampleJSON: string = JSON.stringify(example)
console.log(exampleJSON)
// Parse the JSON string back to an object
const exampleParsed = JSON.parse(exampleJSON) as TileMatrixSetItem
console.log(exampleParsed)[Back to top] [Back to API list] [Back to Model list] [Back to README]