-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
78 lines (70 loc) · 4.56 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>GLOBALISE AMH Datasprint - Mirador3</title>
</head>
<body>
<div id="osd-mirador"></div>
<script src="https://unpkg.com/mirador@latest/dist/mirador.min.js"></script>
<script>
const getURL = () => {
let hashValue = window.location.hash.slice(1);
let url = hashValue.split(',')[1]
return url;
}
const defaultCollection = "https://globalise-huygens.github.io/datasprint-amh/manifests/4.VEL.json"
const toLoad = getURL() || defaultCollection;
var mirador = Mirador.viewer({
"id": "osd-mirador",
"manifests": [
],
"windows": [
{
"loadedManifest": toLoad,
"canvasIndex": 0,
"thumbnailNavigationPosition": 'far-bottom'
}
],
catalog: [
{ manifestId: "https://globalise-huygens.github.io/datasprint-amh/manifests/B.3.1.json"},
{ manifestId: "https://globalise-huygens.github.io/datasprint-amh/manifests/B.3.2.json"},
{ manifestId: "https://globalise-huygens.github.io/datasprint-amh/manifests/B.3.3.json"},
{ manifestId: "https://globalise-huygens.github.io/datasprint-amh/manifests/B.3.4.json"},
{ manifestId: "https://globalise-huygens.github.io/datasprint-amh/manifests/B.3.5.json"},
{ manifestId: "https://globalise-huygens.github.io/datasprint-amh/manifests/B.3.6.json"},
{ manifestId: "https://globalise-huygens.github.io/datasprint-amh/manifests/B.3.7.json"},
{ manifestId: "https://globalise-huygens.github.io/datasprint-amh/manifests/B.3.8.json"},
{ manifestId: "https://globalise-huygens.github.io/datasprint-amh/manifests/B.3.9.json"},
{ manifestId: "https://globalise-huygens.github.io/datasprint-amh/manifests/B.3.10.json"},
{ manifestId: "https://globalise-huygens.github.io/datasprint-amh/manifests/B.3.11.json"},
{ manifestId: "https://globalise-huygens.github.io/datasprint-amh/manifests/B.3.12.json"},
{ manifestId: "https://globalise-huygens.github.io/datasprint-amh/manifests/B.3.13.json"},
{ manifestId: "https://globalise-huygens.github.io/datasprint-amh/manifests/B.3.14.json"},
{ manifestId: "https://globalise-huygens.github.io/datasprint-amh/manifests/B.3.15.json"},
{ manifestId: "https://globalise-huygens.github.io/datasprint-amh/manifests/B.3.16.json"},
{ manifestId: "https://globalise-huygens.github.io/datasprint-amh/manifests/B.3.17.json"},
{ manifestId: "https://globalise-huygens.github.io/datasprint-amh/manifests/B.3.18.json"},
{ manifestId: "https://globalise-huygens.github.io/datasprint-amh/manifests/B.3.19.json"},
{ manifestId: "https://globalise-huygens.github.io/datasprint-amh/manifests/B.3.20.json"},
{ manifestId: "https://globalise-huygens.github.io/datasprint-amh/manifests/C.2.1.json"},
{ manifestId: "https://globalise-huygens.github.io/datasprint-amh/manifests/C.2.2.json"},
{ manifestId: "https://globalise-huygens.github.io/datasprint-amh/manifests/C.2.3.json"},
{ manifestId: "https://globalise-huygens.github.io/datasprint-amh/manifests/C.2.4.json"},
{ manifestId: "https://globalise-huygens.github.io/datasprint-amh/manifests/C.2.5.json"},
{ manifestId: "https://globalise-huygens.github.io/datasprint-amh/manifests/C.2.6.json"},
{ manifestId: "https://globalise-huygens.github.io/datasprint-amh/manifests/C.2.7.json"},
{ manifestId: "https://globalise-huygens.github.io/datasprint-amh/manifests/C.2.8.json"},
{ manifestId: "https://globalise-huygens.github.io/datasprint-amh/manifests/C.2.9.json"},
{ manifestId: "https://globalise-huygens.github.io/datasprint-amh/manifests/C.2.10.json"},
{ manifestId: "https://globalise-huygens.github.io/datasprint-amh/manifests/C.2.11.json"},
{ manifestId: "https://globalise-huygens.github.io/datasprint-amh/manifests/C.2.12.json"},
{ manifestId: "https://globalise-huygens.github.io/datasprint-amh/manifests/C.2.13.json"}
]
});
</script>
</script>
</body>
</html>