We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 734b334 commit 68100d6Copy full SHA for 68100d6
2 files changed
ohmg/api/schemas.py
@@ -486,6 +486,7 @@ class LayerSetSchema(Schema):
486
extent: Optional[tuple]
487
multimask_extent: Optional[tuple]
488
mosaic_cog_url: Optional[str]
489
+ xyz_tiles_url: Optional[str]
490
491
@staticmethod
492
def resolve_id(obj):
ohmg/frontend/svelte_components/src/components/map/MosaicDownload.svelte
@@ -75,6 +75,12 @@
75
n/a
76
{/if}
77
</dd>
78
+ {#if ls.xyz_tiles_url}
79
+ <dt>XYZ tileset</dt>
80
+ <dd>
81
+ <pre style="margin:0;">{`${ls.xyz_tiles_url}/{z}/{x}/{y}.png`}</pre>
82
+ </dd>
83
+ {/if}
84
<dt>IIIF Georef AnnotationPage (JSON)</dt>
85
<dd>
86
<Link
0 commit comments