-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
24 lines (24 loc) · 1.22 KB
/
index.html
File metadata and controls
24 lines (24 loc) · 1.22 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<html>
<head>
<link rel="stylesheet" href="https://unpkg.com/leaflet/dist/leaflet.css" />
<link rel="stylesheet" href="map.css" />
<link rel="stylesheet" href="https://code.jquery.com/ui/1.13.2/themes/base/jquery-ui.css" />
<link rel="stylesheet" href="https://code.jquery.com/ui/1.13.2/themes/dark-hive/jquery-ui.css" />
<script src="https://unpkg.com/leaflet@1.9.3/dist/leaflet.js"></script>
<script src="https://code.jquery.com/jquery-3.6.4.min.js"></script>
<script src="https://code.jquery.com/ui/1.13.2/jquery-ui.min.js"></script>
</head>
<body>
<div id="bodywrapper">
<div style="width: 100vw; height: 45px" id="controlbar">
<div style="width:300px;" id="slider"></div> <span id="value"></span>
<button onClick="updateMap()">Update</button>
<button onClick="showRSSIButton()">Show RSSI</button>
<button onClick="showSNRButton()">Show SNR</button>
<div style="width:300px;" id="slider2"></div>
</div>
<div style="width: 100vw; height: 100vh" id="map"></div>
</div>
<script src="map.js?a=1"></script>
</body>
</html>