-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
46 lines (43 loc) · 1.64 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Wifi propagation heatmap</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="robots" content="index, follow" />
<meta name="description" content="Heatmap that shows the propagation of WIFI signals" />
<!-- Das neueste kompilierte und minimierte CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
<!-- Optionales Theme -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap-theme.min.css">
<style>
.demo-wrapper {
margin-bottom: 20px;
}
</style>
<script src="http://code.jquery.com/jquery-2.1.4.js"></script>
<!-- Das neueste kompilierte und minimierte JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
<link rel="stylesheet" href="http://cdn.leafletjs.com/leaflet-0.7.3/leaflet.css" />
<script src="http://cdn.leafletjs.com/leaflet-0.7.3/leaflet.js"></script>
<script src='js/papaparse.js'></script>
<script src="js/heatmap.js"></script>
<script src="js/leaflet-heatmap.js"></script>
<script src="js/wlanscript.js"></script>
</head>
<body>
<div class="container">
<h1>Porpagation of WIFI signals of choosen SSID</h1>
<div class="demo-wrapper">
<div class="heatmap" id="map-canvas" style="width: 100%; height: 500px;">
</div>
</div>
<form class="form-inline">
<div class="form-group">
<label for="ssid">WIFI SSID</label>
<select id="ssid" class="wlanselect form-control"></select>
</div>
</form>
</div>
</body>
</html>