Skip to content

Latest commit

 

History

History
107 lines (93 loc) · 4.29 KB

index.md

File metadata and controls

107 lines (93 loc) · 4.29 KB

Zooniverse Testing - partOf

I created this script to add a link from the annotation to the Manifest. This script uses the annotations generated in the add ID step.

Adding a link from the annotation to the Manifest can be really helpful as it allows annotation consumers to get access to the image underneath the annotation as it can't use the canvas id because it doesn't necessarily resolve. The link to the manifest is added to the target and the original annotation looked like this:

{
    "id": "https://glenrobson.github.io/iiif_stuff/zooniverse/with_id/79",
    "type": "Annotation",
    "motivation": "tagging",
    "body": {
        "format": "text/plain",
        "language": "en",
        "type": "TextualBody",
        "value": "Rochester, or, King Charles the Second's Merry Days."
    },
    "target": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100022589176.0x0001c3#xywh=570,1472,1814,314"
}

and with the link back to the manifest it looks like:

{
    "id": "https://glenrobson.github.io/iiif_stuff/zooniverse/with_id/79",
    "type": "Annotation",
    "motivation": "tagging",
    "body": {
        "type": "TextualBody",
        "format": "text/plain",
        "language": "en",
        "value": "Rochester, or, King Charles the Second's Merry Days."
    },
    "target": {
        "type": "SpecificResource",
        "source": {
            "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100022589176.0x0001c3",
            "type": "Canvas",
            "partOf": [{
                    "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100022589176.0x000002/manifest.json",
                    "type": "Manifest"
            }]
        },
        "selector": {
            "type": "FragmentSelector",
            "conformsTo": "http://www.w3.org/TR/media-frags/",
            "value": "xywh=570,1472,1814,314"
        }
    }
}

Looking at the edited manifest in Mirador it seems to still work OK:

<script type='text/javascript' src='https://unpkg.com/mirador@latest/dist/mirador.min.js'></script> <script type="text/javascript"> var miradorInstance = Mirador.viewer({ id: 'mirador', windows: [ { manifestId: 'https://glenrobson.github.io/iiif_stuff/zooniverse/partof/manifest.json', sideBarPanel: 'annotations', sideBarOpen: true } ], }); </script>

This type of annotation list should also work with another IIIF tool called Annona which is really good for presenting your annotations. Unfortunately it doesn't look like it currently supports this form of annotation. Annona did support the version 2 version of this annotation structure and it means Annona can work with just the annotation page without also being supplied with the manifest.

<script src="https://ncsu-libraries.github.io/annona/dist/annona.js"></script>

The annotation pages with part of included in the annotation: