-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
69 lines (54 loc) · 2.69 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Exzellenzstrategie Calculator</title>
<link rel="stylesheet" href="http://cdn.leafletjs.com/leaflet/v1.2.0/leaflet.css" />
<script src="http://cdn.leafletjs.com/leaflet/v1.2.0/leaflet.js"></script>
<script src="https://d3js.org/d3.v4.min.js"></script>
<script src="https://d3js.org/d3-hexbin.v0.2.min.js"></script>
<link rel="stylesheet" href="css/style.css" />
<script src="js/hexbin.js"></script>
</head>
<body>
<div id="map"></div>
<div id='selector'>
<form>
<input type="radio" name="switch" value="keine" onclick="switcher(this.value)" checked><label for="keine">Keine</label><br>
<input type="radio" name="switch" value="hindex" onclick="switcher(this.value)"><label for="hindex">h-Index</label><br>
<input type="radio" name="switch" value="hdurch" onclick="switcher(this.value)"><label for="hdurch">h-Index Durchschnitt</label><br>
<input type="radio" name="switch" value="publi" onclick="switcher(this.value)"><label for="publi">Publications</label><br>
<input type="radio" name="switch" value="pdurch" onclick="switcher(this.value)"><label for="pdurch">Publications Durchschnitt</label><br>
<input type="radio" name="switch" value="citat" onclick="switcher(this.value)"><label for="citat">Zitat</label><br>
<input type="radio" name="switch" value="cdurch" onclick="switcher(this.value)"><label for="cdurch">Zitat Durchschnitt</label><br>
</form>
</div>
<div id="suche">
<form>
<input list="tags" name="tag" id="tag">
<datalist id="tags"></datalist>
<button id="reset" type="button" onclick="matiereSearch()">Filter</button>
</form>
</div>
<script src="js/map.js"></script>
<div class ="legend" id="legend">
<div id="legend-inner">
<div class="gradient">
</div>
<div class="labels">
<div class="label" style="bottom: 100%;" id ="limitmax"><b></b></div>
<div class="label" style="bottom: 90%;" id ="limit9"><b></b></div>
<div class="label" style="bottom: 80%;" id ="limit8"><b></b></div>
<div class="label" style="bottom: 70%;" id ="limit7"><b></b></div>
<div class="label" style="bottom: 60%;" id ="limit6"><b></b></div>
<div class="label" style="bottom: 50%;" id ="limit5"><b></b></div>
<div class="label" style="bottom: 25%;" id ="limit4"><b></b></div>
<div class="label" style="bottom: 10%;" id ="limit3"><b></b></div>
<div class="label" style="bottom: 5%;" id ="limit2"><b></b></div>
<div class="label" style="bottom: 1%;" id ="limit1"><b></b></div>
<div class="label" style="bottom: 0%;" id ="limit0"><b></b></div>
</div>
</div>
</div>
</body>
</html>