-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
61 lines (49 loc) · 2.24 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
<!DOCTYPE html>
<html>
<head>
<title>NIU Interactive Campus Map</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=Edge" >
<!-- version with no external code dependencies -->
<!-- link to css libraries -->
<link rel="stylesheet" href="leaflet.css" />
<link rel="stylesheet" href="smoothness-jquery-ui.css">
<!-- link to internal css libraries -->
<link rel="stylesheet" href="iCampusMap_style.css" />
<!-- link to javascript libraries -->
<script src="jquery-1.10.2.min.js"></script>
<script src="jquery-ui.js"></script>
<script src="leaflet05.js"></script>
<script src="jQuery.XDomainRequest.js"></script>
<!-- link to own javascript -->
<script src="iCampusMap.js" charset="UTF-8"></script>
<script src="iCampusMapJson.js" charset="UTF-8"></script>
<noscript>Sorry, your browser does not support JavaScript!</noscript>
</head>
<body>
<div id="map" >
</div>
<div id="navbar" class="navbar">
<div class="innernav">
<a href="http://www.niu.edu"><img id="logo" src="images/NIU_horz_3Clr.png" alt="NIU Logo"></a>
<p>NIU Interactive Campus Map Project</p>
<p id="about-text" class="smallText">This map was developed as part of the Spring 2013 Geog790 course by Grant Herbert, with OSM contributions by Raitis Bocka and Nicholas Cortellini.</p>
<p class="mediumText">Use the Tab or Arrow keys to autocomplete a search, or the Enter key to search as typed</p>
<!-- search box and button -->
<input class="ui-widget" id="searchNIU" type="text" placeholder="Search the map..." />
<!--enter fires this button -->
<input id="btnOSMAPI" type="button" value="Search" onclick="searchOSM(); return false"/>
<!-- other buttons -->
<input id="btnClearAll" type="button" value="Clear" onclick="clearAll()"/>
<input id="btnShowAll" type="button" value="Show All Locations" onclick="showAllResultsOnMap()"/>
</div>
<div id="resultText" class="mediumText"> </div>
<div id="results" class="smallText"> </div> <!--holds search results -->
<div id="about"> </div> <!--holds popup results -->
</div>
</body>
<script>
//window.onload = init;
jQuery(document).ready(initmap());
</script>
</html>