forked from sarah37/filterable-collection
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
47 lines (43 loc) · 1.35 KB
/
index.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
47
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Geospatial Network Visualization</title>
<link rel="stylesheet" href="style.css" />
<link
href="https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700&display=swap"
rel="stylesheet"
/>
<script src="https://d3js.org/d3.v5.min.js"></script>
<script src="https://unpkg.com/masonry-layout@4/dist/masonry.pkgd.min.js"></script>
<script src="https://unpkg.com/imagesloaded@4/imagesloaded.pkgd.min.js"></script>
</head>
<body>
<!-- to handle js-generated events -->
<div id="eventHandler" class="input hidden"></div>
<div class="grid-container">
<div id="controls">
<h1>Geospatial Network Visualization</h1>
<p>
A collection of visualization techniques for geospatial
network data.
</p>
<!-- • -->
<a
href="https://onlinelibrary.wiley.com/doi/full/10.1111/cgf.14198"
target="_blank"
>Survey Paper (2021)</a
>
<!-- <hr /> -->
<h2>Select filters:</h2>
<span id="count"></span> / <span id="total"></span> techniques
(<span href="#" id="showall">show all</span>)
<div id="filters"></div>
<h3>Specific Data Features</h3>
<div id="filters_data"></div>
</div>
<div id="container" class="grid"></div>
</div>
<script type="text/javascript" src="script.js"></script>
</body>
</html>