-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
151 lines (122 loc) · 4.5 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
<html>
<head>
<title>[title]</title>
<link rel="stylesheet" href="src/styles.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css">
</head>
<body bgcolor="#ff4f4c">
<script src="src/js/basefunctions.js"></script>
<!--<div>
<h2>world spawns per hour</h2>
<div id="worldspawnsperhour" style="height: 1000px"></div>
<script src="src/js/worldspawnsperhour.js"></script>
</div>-->
<div>
<h2>how often do the pokemon spawn</h2>
<canvas id="chummily"></canvas>
<script src="src/js/chummlyPokemon.js"></script>
</div>
<div>
<h2>weather</h2>
<canvas id="weather"></canvas>
</div>
<div>
<h2>terrain</h2>
<canvas id="terrain"></canvas>
</div>
<!--<div>
<h2>testing google maps</h2>
<div id="mapstester" style="height: 800px"></div>
<script src="/src/js/mapstester.js"></script>
</div>-->
<!--<h1>Hello</h1>
<div>
<h2>appearances per continent</h2>
<div class="appearancesPerContinent"></div>
</div>
<div>
<h2>vertical bar</h2>
<svg class="verticalBar">
</div>
</div>
<div>
<h2>Appearances per type</h2>
<canvas id="appearancesPerType"></canvas>
<script src="src/js/appearancesPerType.js"></script>
</div>
<div>
<h2>Appearances per type TOP 10</h2>
<canvas id="appearancesPerTypeTOP10"></canvas>
</div>
<div>
<h2>appearances per hour</h2>
<canvas id="appearancesperhour"></canvas>
--><script src="src/js/appearancesPerHour.js"></script><!--
<h2>appearances per day per hour</h2>
<span>
<button onclick="earlierPerDayPerHour()">
<</button>
<button onclick="laterPerDayPerHour()">></button>
<span id="choosendayPerDayPerHour"></span>
</span>
<br>
<canvas id="appearancesPerDayPerHour"></canvas>
<script src="src/js/appearancesPerDayPerHour.js"></script>
<h2>appearances per day per hour with coordinates</h2>
<span>
<span>Day: </span>
<button onclick="apdphwcearlierday()">
<</button>
<button onclick="apdphwclaterday()" value=">">></button>
<span id="apdphwcchoosenday"></span>
</span>
<br>
<span>
<span>Hours: </span>
<button onclick="apdphwcearlierhour()"><</button>
<button onclick="apdphwclaterhour()" value=">">></button>
<span id="apdphwcchoosenhour"></span>
</span>
<br>
<div id="apdphwc1" style="height: 800px; width: 33%; float: left; margin-left: 5px"></div>
<div id="apdphwc2" style="height: 800px; width: 33%; float: left; margin-left: 5px"></div>
<div id="apdphwc3" style="height: 800px; width: 33%; float: left; margin-left: 5px"></div>
<script src="src/js/appearancesPerDayPerHourWithCoordinates.js"></script>
</div>-->
<!--<div>
<h2>appearances per day</h2>
<canvas id="appearancesPerDays"></canvas>
<script src="src/js/appearancesPerDays.js"></script>
</div>-->
<!--<div>
<h2>appearances per day with coordinates on a map</h2>
<div id="perdaycoordinates">
<span>
<button onclick="earlier()">
<</button>
<button onclick="later()" value=">">></button>
<span id="choosenday"></span>
</span>
<div id="mapperday" style="height: 1000px"></div>
<script src="src/js/appearancesPerDayWithCoordinates.js"></script>
</div>
</div>-->
<!--<div>
<h2>Worldmap</h2>
<div id="worldmap"></div>
<script src="src/js/worldmap.js"></script>
</div>
<div>
<h2>appearances per terrain</h2>
<canvas id="appearancesperterrain"></canvas>
<script src="src/js/appearancesPerTerrain.js"></script>
</div>-->
<!-- chartjs -->
<script src="node_modules/chart.js/dist/Chart.min.js"></script>
<script src="https://d3js.org/d3.v5.min.js"></script>
<script src="src/js/main.js"></script>
<script src="src/js/picker.js"></script>
<!--<script async defer src="https://maps.googleapis.com/maps/api/js?key=AIzaSyAmVJrAL8e75c9FRVKuGEE2AqIzRmpRBA4&callback=initMap">
</script>-->
</body>
</html>