-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
52 lines (41 loc) · 1.42 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Street names</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" type="text/css" href="./css/leaflet.css" />
<link rel="stylesheet" type="text/css" href="./css/listbox.css" />
<script src="./listbox/listbox.js"></script>
<script src="./listbox/utils.js"></script>
<script type="module" src="./main.js"></script>
</head>
<body>
<div>
<input type="checkbox" id="center_on_street" />
<label for="center_on_street">Center map on street</label>
</div>
<div>
<input type="checkbox" id="highlight_all_streets" checked />
<label for="center_on_street">Highlight all streets</label>
</div>
<span>Streets # </span>
<span id="number_of_streets"></span>
<!--TODO: Add "filter listbox"
<input type="text" id="filter" placeholder="Search" />
-->
<span id="ss_elem"> </span>
<ul
id="ss_elem_list"
tabindex="0"
role="listbox"
aria-labelledby="ss_elem"
></ul>
<button id="load_button" >Load</button>
<p>---</p>
<button class="city" >Kramfors</button>
<button class="city" >Sollefteå</button>
<button class="city" >Härnösand</button>
<div id="map" style="position: absolute; left: 300px; right: 10px; top: 10px; bottom: 10px;"></div>
</body>
</html>