-
Notifications
You must be signed in to change notification settings - Fork 0
/
clev.html
37 lines (32 loc) · 929 Bytes
/
clev.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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<script src="js/Parking_Meters.js"></script>
</head>
<body>
<div>
<select id = "selectStreet" onchange = "displayStreetCoords()">
<option>Choose a street</option>
</select>
<!-- <button onclick = "getCoords()">Click</button> -->
</div>
<div id = "res">
coordinates
</div>
<div>
<select id = "selectTime">
<option>Choose time</option>
</select>
</div>
<div>
<select id = "selectDay" onchange = "displayFreeMeters()">
<option>Choose day</option>
</select>
</div>
<div id = "meter_res">
meters
</div>
<script src="js/clev.js"></script>
</body>
</html>