-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
73 lines (62 loc) · 3.04 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Informação sobre Pesca</title>
<link rel="stylesheet" type="text/css" href="css/sweetalert.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="css/style.css">
<link rel="stylesheet" href="css/filter-search.min.css" />
<link rel="stylesheet" href="css/jquery.mobile.icons.min.css" />
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.4.5/jquery.mobile.structure-1.4.5.min.css" />
</head>
<body>
<div id="container"></div>
<div class="ui-grid-a"></div>
<div class="ui-block-a">
<div data-role="page" class="page" id="title">
<div data-role="header" class="header">
<h1>Pesquisa</h1>
</div>
<div data-role="main" class="ui-content">
<form id="searchFilterForm">
<p class="attributesLabels"> ID:</p>
<select class="selector" id="idSelector">
<option value="all" selected="selected">Todos</option>
</select>
<br>
<p class="attributesLabels"> Coordenadas:</p>
<input id="latitude" type="text" placeholder="Latitude" />
<input id="longitude" type="text" placeholder="Longitude" />
<br>
<p class="attributesLabels"> Peso (Kg):</p>
<div data-role="rangeslider" id="slider-weight" data-mini="true">
<input type="range" id="minWeight" min="0" max="3000">
<input type="range" id="maxWeight" min="0" max="3000">
</div>
<br>
<p class="attributesLabels"> Velocidade:</p>
<div data-role="rangeslider" id="slider-speed" data-mini="true">
<input type="range" id="minSpeed" min="0" max="1" step="0.1">
<input type="range" id="maxSpeed" min="0" max="1" step="0.1">
</div>
<br>
<div style="display: inline-flex">
<input data-role="button" id="btnReset" type="button" value="Limpar" onclick="resetSearch()">
<input data-role="button" id="btnSearch" type="button" value="Pesquisar" onclick="filterSearch()">
</div>
</form>
</div>
</div>
</div>
</div>
<script src="js/lib/three.min.js"></script>
<script src="js/lib/sweetalert.min.js"></script>
<script src="http://code.jquery.com/jquery-1.11.1.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/js/bootstrap.min.js"></script>
<script src="js/lib/OrbitControls.js"></script>
<script src="js/data.js"></script>
<script src="js/main.js"></script>
<script src="http://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js"></script>
</body>
</html>