-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwatergaugestationsfilterWDC.html
74 lines (57 loc) · 2.89 KB
/
watergaugestationsfilterWDC.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
<html>
<head>
<title>Wasserpegel REST-API</title>
<meta http-equiv="Cache-Control" content="no-store" />
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" rel="stylesheet" crossorigin="anonymous">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js" type="text/javascript"></script>
<!-- <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script> -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js" crossorigin="anonymous"></script>
<script src="https://connectors.tableau.com/libs/tableauwdc-2.3.latest.js" type="text/javascript"></script>
<script src="watergaugestationsfilter.js" type="text/javascript"></script>
<script src="water.js" type="text/javascript"></script>
</head>
<body>
<form>
<div class="container container-table">
<div class="row vertical-center-row">
<p>Filter data by water and location</p>
<div class="col-md-12 well">
<label for="sel1" class="form-label">Select water:</label>
<select class="form-control " id="sel1">
<option selected value='666'>All waters</option>
</select>
</div>
<div class="col-md-12 well">
<label class="form-check-label" for="inlineRadio1">Enable search for watergauge stations on selected water</label>
</br>
<label class="form-check-label" for="inlineRadio1">Off</label>
<input class="form-check-input inlineRadioOptions" type="radio" name="inlineRadioOptions" id="inlineRadio1" value="option1" checked >
<input class="form-check-input inlineRadioOptions" type="radio" name="inlineRadioOptions" id="inlineRadio2" value="option2">
<label class="form-check-label" for="inlineRadio2">On</label>
<div class="col-md-12 well" >
<div class="col-md-6">
<label for="customRange1" class="form-label">Set gravity point by distance [km] from source of the selected water </label>
<input type="range" class="form-range inputDisabled" value="50" min="0" max="3000" step="50" id="customRange1" oninput="this.nextElementSibling.value = this.value" disabled>
<output>50</output>
</div>
<div class="col-md-6">
<label for="customRange2" class="form-label">Radius around selected point [km]</label>
<input type="range" class="form-range inputDisabled" value="10" min="0" max="100" step="5" id="customRange2" oninput="this.nextElementSibling.value = this.value" disabled>
<output>10</output>
</div>
</div>
</div>
</div>
</div>
</form>
<script>
</script>
<div class="container container-table">
<div class="row vertical-center-row">
<div class="text-center col-md-8 col-md-offset-2">
<button type="button" id="submitButton" class="btn btn-success" >Get watergauge data!</button>
</div>
</div>
</div>
</body>
</html>