-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathppamobile.html
45 lines (43 loc) · 1.72 KB
/
ppamobile.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>ppa</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.1.1/jquery.mobile-1.1.1.min.css" />
<link rel="stylesheet" href="js/leaflet/dist/leaflet.css" />
<link rel="stylesheet" href="css/ppa.css" />
<script src="js/jquery-1.7.2.min.js"></script>
<script src="js/jquery.mobile-1.1.1.js"></script>
<script src="js/leaflet/dist/leaflet.js"></script>
<script src="js/ppa.js"></script>
</head>
<body onload="initMap();">
<div data-role="page">
<div data-role="header">
<!-- <a id="clear-button" href="ppamobile.html" data-icon="">Clear</a> -->
<input id="clear-button" data-role="button" type="reset" value="Clear" class="ui-btn-left" data-inline="true" data-mini="true"/>
<h1 id="heading">Weedon Island Potsherd Monitoring Tool</h1>
<!-- <input id="calculateButton" type="submit" value="Calculate" class="ui-btn-right" data-mini="true" data-inline="true"/> -->
<a data-role="button" id="calculateButton" class="ui-btn-right">
Calculate
</a>
<a id="results-link" href="#results-dialog" data-rel="dialog" data-transition="pop">Open dialog</a>
</div><!-- /header -->
<div data-role="content" id="map">
</div
<div data-role="footer">
</div>
</div><!-- /page -->
<div id="results-dialog" data-role="page">
<div data-role="header">
<h2>Results</h2>
</div>
<div id="results-content" data-role="content">
</div>
<div data-role="footer" id="results-dialog-footer">
<a id="dialog-close-button" data-role="button" data-inline="false" href="ppamobile.html">OK</a>
</div>
</div>
</body>
</html>