-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex-full-taxonomy.html
43 lines (38 loc) · 1.13 KB
/
index-full-taxonomy.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 lang="en">
<head>
<!-- Loading library -->
<link rel="stylesheet" href="../../dist/gogocarto.min.css">
<script src="../../dist/gogocarto.min.js"></script>
<!-- Icons and Fonts -->
<link href="https://fonts.googleapis.com/css?family=Roboto:400,700" rel="stylesheet">
<link href="https://file.myfontastic.com/p9QtVQwDCkDvVq6VJesnxg/icons.css" rel="stylesheet">
<!-- Load data -->
<script src="../data/elements.js"></script>
<script src="../data/taxonomy-full.js"></script>
<!-- Examples related stuff -->
<link rel="stylesheet" href="examples.css">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
</head>
<body>
<!-- Create container -->
<div id="gogocarto"></div>
</body>
<script>
$(document).ready(function() {
carto = goGoCarto('#gogocarto', {
data:
{
taxonomy: taxonomy,
elements: elements,
},
menu:
{
showOnePanePerMainOption: true,
showCheckboxForMainFilterPane: false
},
});
});
</script>
</html>