-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmdu.html
46 lines (44 loc) · 1.19 KB
/
mdu.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
<!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>AADHUM - Driskell</title>
<style type="text/css">
#viewer {
width: 100%;
height: 100%;
position: fixed;
}
</style>
</head>
<body>
<div id="viewer"></div>
<script src="mirador/mirador.min.js"></script>
<script type="text/javascript">
$(function() {
$.getJSON('./manifests/mdu.json', function(data) {
myMiradorInstance = Mirador({
id: "viewer",
layout: "1x1",
buildPath: "mirador/",
data: data,
windowObjects: [
{
loadedManifest: "http://aadhum.mith.us/manifests/mdu-062679.json",
canvasID: "http://aadhum.mith.us/mdu/062679/1/canvas",
viewType: "ImageView",
}
],
// saveSession: true,
annotationEndpoint: {
name:"Local Storage",
module: "LocalStorageEndpoint"
}
});
});
});
</script>
</body>
</html>