forked from dezmaeth/Pinapple
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
99 lines (94 loc) · 3.1 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Pinapple Project</title>
<link href="css/bootstrap.css" rel="stylesheet" type="text/css" />
<link href="css/bootstrap-responsive.css" rel="stylesheet" type="text/css" />
<link href="css/pinapple.css" rel="stylesheet" type="text/css" />
</head>
<body>
<header>
<div id="logo">
<img src="img/logo.png" alt="pinapple" />
</div>
<div id="slogan">
<p>Find your optimal crops according your <b>location</b>, <b>climate</b> and <b>soil</b> data.</p>
</div>
</header>
<div class="container">
<div id="locator">
<p id="locator-title">your location:</p>
<!--tabla de ubicaciones -->
<div id="locator-left">
<table class="table table-folded" id="terrain-data">
<tbody>
<tr>
<td>Latitude</td>
<td id="lat"></td>
</tr>
<tr>
<td>Longitude</td>
<td id="long"></td>
</tr>
<tr>
<td>Elevation</td>
<td id="elv"></td>
</tr>
<tr>
<td>Soil PH</td>
<td><input type="text" value="" onfocus="this.value=''" id="input_PH"><span>pH</span></td>
</tr>
<tr>
<td>Water (Annual Rainfall)</td>
<td><input type="text" value="" onfocus="this.value=''" id="input_Water"><span>mm</span></td>
</tr>
</tbody>
</table>
<p class="floatbtn"><a class="btn btn-primary btn-large" id="show-me-my-crops-button">Show me my crops</a></p>
</div><!--fin tabla -->
<div id="locator-right">
<div id="map"></div>
</div>
<div class="clearfix"></div>
</div>
<!--fin de locator -->
<div class="row">
<div class="span12" id="results">
<h2>Crop results</h2>
<table class="table table-bordered table-striped" id="list">
<thead>
<tr>
<th>Commodity</th>
<th>Variety</th>
<th>Tº low</th>
<th>Tº High</th>
<th>Lat1</th>
<th>Lat2</th>
<th>Elevation Min</th>
<th>Elevation Max</th>
<th>Soil Type</th>
<th>Soil min PH</th>
<th>Soil max PH</th>
<th>Sunlight</th>
<th>Water min</th>
<th>Water max</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
</div>
</div>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<script>window.jQuery || document.write('<script src="js/libs/jquery-1.7.1.min.js"><\/script>')</script>
<script src="http://maps.google.com/maps/api/js?sensor=true"></script>
<script type="text/javascript" src="js/pineaple/default.js"></script>
<script type="text/javascript" src="js/pineaple/draw.js"></script>
<script type="text/javascript" src="js/pineaple/controllers/map.js"></script>
<script type="text/javascript" src="js/pineaple/controllers/network.js"></script>
<script src="js/plugins.js"></script>
<script src="js/script.js"></script>
</body>
</html>