-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpuerto_rico.html
41 lines (40 loc) · 1.27 KB
/
puerto_rico.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
<!DOCTYPE html>
<html>
<head>
<meta content="text/html;charset=utf-8" http-equiv="Content-Type">
<meta content="utf-8" http-equiv="encoding">
<title>Oligrapher Demo</title>
<script src="/oligrapher/assets/oligrapher-dev.js"></script>
<script src="puerto-rico-sample-data.js"></script>
<style>
body {
margin: 10px;
}
</style>
</head>
<body>
<div id="oligrapher"></div>
<script>
var elem = document.getElementById('oligrapher');
elem.style.height = window.innerHeight - 100 + "px";
var oli = new Oligrapher({
graph: puertoRico,
settings: {
debug: true
},
attributes: {
title: "Puerto Rico's financial control board",
date: "January 12, 2018",
subtitle: "A longer description of this map. Use this space to give more context.",
user: { name: "Kevin", url: "http://littlesis.org/user/kevin" },
settings: { private: false },
links: [
{ text: "Edit", url: "https://littlesis.org/oligrapher/edit" },
{ text: "Clone", url: "https://littlesis.org/oligrapher/clone" },
{ text: "Disclaimer", url: "https://littlesis.org/oligrapher/disclaimer" }
]
}
});
</script>
</body>
</html>