-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
57 lines (48 loc) · 2.14 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
<!DOCTYPE html>
<html>
<head>
<title>Virginia Tech Campus Map</title>
<meta charset='utf-8' />
<link rel='stylesheet' type='text/css' href='css/global.css' />
<link rel="shortcut icon" href='http://vtluug.org/files/icons/favicon.png' />
<link rel="apple-touch-icon" href='http://vtluug.org/files/icons/icon.png' />
<!-- disable scaling so zooming works properly on mobile -->
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
</head>
<body>
<div id='wrapper'>
<div id='infobox'>
<button>+</button>
<h1>Virginia Tech Campus Map</h1>
<div id='infobox_content'>
<p>Zoom in to view campus buildings, apartment complexes,
footpaths, bike parking, and more.</p>
<p class='bus_stop'>If you click on a bus stop, you can see the
next estimated arrival time, powered by <a href='http://bt4u.org'
rel='external'>BT4U</a>.</p>
<p>This map is provided by the <a href='http://vtluug.org/'
rel='external'>Linux and Unix Users Group at Virginia Tech</a>.
Server funding provided by the <a href='http://www.sec.vt.edu/'
rel='external'>Student Engineer's Council</a>.</p>
<div id='map_toolbar'>
<form action='#search' method='get' id='search_frm'>
<input name='q' id='search_box' value='' />
<input type='submit' value='Search' />
</form>
<div class='clear'></div>
</div>
</div>
</div>
<div id='map'></div>
</div>
<script type='text/javascript' src="js/jquery.js"></script>
<script type='text/javascript' src="js/openlayers/OpenLayers.js"></script>
<script type='text/javascript' src="js/map.js"></script>
<script type='text/javascript' src="js/bt4u.js"></script>
<script type='text/javascript' src="js/surveillance.js"></script>
<script type='text/javascript' src="js/interactive.js"></script>
<script type='text/javascript' src="js/nominatim.js"></script>
<script type='text/javascript' src="js/wigle.js"></script>
<script type='text/javascript' src="js/arcgis.js"></script>
</body>
</html>