-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
89 lines (67 loc) · 2.95 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="chrome=1">
<meta name="viewport" content="initial-scale=1.0, width=device-width">
<script src="jquery.js" type="text/javascript"></script>
<script src="jquery-ui.js" type="text/javascript"></script>
<script src="encog.js" type="text/javascript"></script>
<script src="encog-widget.js" type="text/javascript"></script>
<script src="map.js" type="text/javascript"></script>
<link rel="stylesheet" href="ol.css" type="text/css">
<script src="ol-debug.js" type="text/javascript"></script>
<title>MTH 325 application project</title>
<style>
</style>
</head>
<body onload="MAP.init()" >
<div id="map" style="width:100%;height:90%;position:absolute;"></div>
<div id="buttons" style="width:100%;height:10%;top:90%;position:absolute;">
<table>
<tr><td>
<button id="createGenetic">Create Random Path</button>
<button id="animate">Animate Algorithm</button>
<button id="clear-restart">Clear Points</button>
<button id="addRandPoints">Add Random Points</button>
<input id="randomPointSpinner" name="value">
</td>
<td>
<table>
<tr>
<td>
<p>points: </p>
<p id="pointcounter">0</p>
</td>
<td>
<p>time(seconds): </p>
<p id="totaltimer">0 </p>
</td>
<td>
<p>time per iteration: </p>
<p id="deltaT">0</p>
</td>
</tr>
<tr>
<td>
<p>total iterations: </p>
<p id="totaliterationcounter">0</p>
</td>
<td>
<p>stable iterations: </p>
<p id="iterationcounter"> 0</p>
</td>
<td>
<p>best total distance: </p>
<p id="solutionDist"></p>
</td>
</tr>
</table>
</td>
</tr>
<tr>
</tr>
</table>
</div>
</body>
</html>