forked from sul-dlss/bav_stanford
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pathway_c.html
92 lines (90 loc) · 3.98 KB
/
pathway_c.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<link rel="stylesheet" type="text/css" href="mirador/css/mirador-combined.css">
<title>Mirador Viewer</title>
<style type="text/css">
#viewer {
width: 100%;
height: 100%;
position: fixed;
}
</style>
</head>
<body>
<div id="viewer"></div>
<script src="mirador/mirador.js"></script>
<script type="text/javascript">
$(function() {
myMiradorInstance = Mirador({
id: "viewer",
layout: "1x1",
buildPath: "mirador",
data: [
{ manifestUri: 'http://digi.vatlib.it/iiif/MSS_Vat.gr.1853/manifest.json', location: 'Vat.gr.1853'},
{ manifestUri: 'http://digi.vatlib.it/iiif/MSS_Vat.gr.1876/manifest.json', location: 'Vat.gr.1876'},
{ manifestUri: 'http://digi.vatlib.it/iiif/MSS_Vat.gr.14/manifest.json', location: 'Vat.gr.14'},
{ manifestUri: 'http://digi.vatlib.it/iiif/MSS_Vat.gr.19/manifest.json', location: 'Vat.gr.19'},
{ manifestUri: 'http://digi.vatlib.it/iiif/MSS_Vat.gr.21/manifest.json', location: 'Vat.gr.21'},
{ manifestUri: 'http://digi.vatlib.it/iiif/MSS_Vat.gr.103/manifest.json', location: 'Vat.gr.103'},
{ manifestUri: 'http://digi.vatlib.it/iiif/MSS_Vat.gr.109/manifest.json', location: 'Vat.gr.109'},
{ manifestUri: 'http://digi.vatlib.it/iiif/MSS_Vat.gr.157/manifest.json', location: 'Vat.gr.157'},
{ manifestUri: 'http://digi.vatlib.it/iiif/MSS_Vat.gr.308.pt.1/manifest.json', location: 'Vat.gr.308.pt.1'},
{ manifestUri: 'http://digi.vatlib.it/iiif/MSS_Vat.gr.308.pt.2/manifest.json', location: 'Vat.gr.308.pt.2'},
{ manifestUri: 'http://digi.vatlib.it/iiif/MSS_Vat.gr.345/manifest.json', location: 'Vat.gr.345'},
{ manifestUri: 'http://digi.vatlib.it/iiif/MSS_Vat.gr.504/manifest.json', location: 'Vat.gr.504'},
{ manifestUri: 'http://digi.vatlib.it/iiif/MSS_Vat.gr.544/manifest.json', location: 'Vat.gr.544'},
{ manifestUri: 'http://digi.vatlib.it/iiif/MSS_Vat.gr.633/manifest.json', location: 'Vat.gr.633'},
{ manifestUri: 'http://digi.vatlib.it/iiif/MSS_Vat.gr.770/manifest.json', location: 'Vat.gr.770'},
{ manifestUri: 'http://digi.vatlib.it/iiif/MSS_Vat.gr.788.pt.B/manifest.json', location: 'Vat.gr.788.pt.B'},
{ manifestUri: 'http://digi.vatlib.it/iiif/MSS_Vat.gr.802/manifest.json', location: 'Vat.gr.802'},
{ manifestUri: 'http://digi.vatlib.it/iiif/MSS_Vat.gr.903/manifest.json', location: 'Vat.gr.903'},
{ manifestUri: 'http://digi.vatlib.it/iiif/MSS_Vat.gr.984/manifest.json', location: 'Vat.gr.984'},
{ manifestUri: 'http://digi.vatlib.it/iiif/MSS_Vat.gr.1827/manifest.json', location: 'Vat.gr.1827'},
{ manifestUri: 'http://digi.vatlib.it/iiif/MSS_Vat.gr.1882/manifest.json', location: 'Vat.gr.1882'},
{ manifestUri: 'http://digi.vatlib.it/iiif/MSS_Urb.gr.154/manifest.json', location: 'Urb.gr.154'},
{ manifestUri: 'http://digi.vatlib.it/iiif/bav_pal_lat_24/manifest.json', location: 'Pal.lat.24'}
],
"windowObjects": [],
/** Testing Annotations **/
annotationEndpoint: {
name: 'Simple Annotation Store Endpoint',
module: 'SimpleASEndpoint',
options: {
url: 'annotation',
storeId: 'comparison',
APIKey: 'user_auth'
}
},
'annotationBodyEditor': {
'module': 'TinyMCEAnnotationBodyEditor',
'options': {
config: {
plugins: "image link media directionality",
toolbar: "bold italic | bullist numlist | link image media | removeformat | ltr rtl",
tags: ["test", "test2", "test3"]
}
}
},
"windowSettings": {
"canvasControls": { // The types of controls available to be displayed on a canvas
"imageManipulation" : {
"manipulationLayer" : true,
"controls" : {
"mirror" : true
}
}
}
},
"sidePanelOptions" : {
"tocTabAvailable": true,
"layersTabAvailable": true,
"searchTabAvailable": true
}
});
});
</script>
</body>
</html>