We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 78a019a commit e79e440Copy full SHA for e79e440
packages/cogify/src/tile.cover.ts
@@ -106,7 +106,11 @@ export async function createTileCover(ctx: TileCoverContext): Promise<TileCoverR
106
type: feature.geometry.type,
107
coordinates: feature.geometry.coordinates,
108
} as any, // FIXME
109
- links: [{ href: `./${tileId}.json`, rel: 'self' }],
+ links: [
110
+ { href: `./${tileId}.json`, rel: 'self' },
111
+ { href: './collection.json', rel: 'collection' },
112
+ { href: './collection.json', rel: 'parent' },
113
+ ],
114
properties: {
115
'proj:epsg': ctx.tileMatrix.projection.code,
116
'linz_basemaps:options': {
0 commit comments