-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·41 lines (41 loc) · 1.64 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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8"/>
<link rel="stylesheet" href="style.css" type="text/css"/>
<title>CIS 121 Final Project</title>
<!-- Change this to the key you are using -->
<script src="https://maps.googleapis.com/maps/api/js?v=3.exp&sensor=false" type="text/javascript"></script>
<script type= "text/javascript" src="points1.js"></script>
<script type= "text/javascript" src="points2.js"></script>
<script type= "text/javascript" src="points3.js"></script>
<script type= "text/javascript" src="functions.js"></script>
</head>
<body onload="javascript: load()" onunload="javascript:GUnload()">
<h1> CIS 121 Final Project</h1>
<h2 class= "subTitle"> Fall 2012</h2>
<h3 id = "studentName">by Kevin Lu</h3>
<hr/>
<div align="right">
<select id="selectInput" onchange="changeFile(this)">
<option value="ny">ny.txt</option>
<option value="penn">penn.txt</option>
<option value="roadSet1Formatted">roadSet1Formatted.txt</option>
</select>
</div>
<h2 class = "subTitle"> Problem 1, Shortest Path </h2>
<div class="map" id="map1">
</div>
<br/>
<h2 class = "subTitle"> Problem 2, Minimum Spanning Tree </h2>
<div class="map" id="map2">
</div>
<h2 class = "subTitle"> Problem 3, Breadth First Search </h2>
<div class="buttonWrapper">
<button type="button" onclick="javascript: animateBFS()">Animate BFS</button>
</div>
<div class="map" id="map3">
</div>
</body>
</html>