forked from glenrobson/SimpleAnnotationServer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathremote.html
More file actions
47 lines (45 loc) · 1.4 KB
/
remote.html
File metadata and controls
47 lines (45 loc) · 1.4 KB
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
<!DOCTYPE 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">
body { padding: 0; margin: 0; overflow: hidden; font-size: 70%; }
#viewer { background: #333 url(mirador/images/debut_dark.png) left top repeat; width: 100%; height: 100%; position: fixed; }
</style>
</head>
<body>
<div id="viewer"></div>
<script src="mirador/mirador.js"></script>
<script src="js/simpleASEndpoint.js"></script>
<script type="text/javascript">
$(function() {
Mirador({
"id": "viewer",
"layout": "1x1",
"mainMenuSettings" :
{
"show": true,
"buttons" : {"bookmark" : false, "layout" : true},
"userLogo": {"label": "IIIF", "attributes": {"href": "http://iiif.io"}}
},
'showAddFromURLBox' : false,
"saveSession": false,
"data": [
{ "manifestUri": "http://dev.llgc.org.uk/iiif/examples/photos/manifest.json", "location": "National Library of Wales"}
],
"windowObjects": [],
/** Testing Annotations **/
annotationEndpoint: {
name: 'Simple Annotation Store Endpoint',
module: 'SimpleASEndpoint',
options: {
url: 'http://remote_host:port/simpleAnnotationStore/annotation'
}
}
});
});
</script>
</body>
</html>