-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathepigraphic.html
43 lines (41 loc) · 1.19 KB
/
epigraphic.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
<!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="build/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="build/mirador/mirador.js"></script>
<script type="text/javascript">
$(function() {
// Called without "let" or "var"
// so we can play with it in the browser
myMiradorInstance = Mirador({
"id": "viewer",
"layout": "1x1",
"data": [
{ "manifestUri": "http://localhost:3000/epigraphic_manifest_edited.json", "location": "UBC Library"},
],
"windowObjects": [],
"annotationEndpoint": { "name":"Local Storage", "module": "LocalStorageEndpoint" },
"sidePanelOptions" : {
"tocTabAvailable": true,
"layersTabAvailable": true,
"searchTabAvailable": true,
"annotations" : true
},
});
});
</script>
</body>
</html>