-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (30 loc) · 1.11 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
<!DOCTYPE html>
<html>
<head>
<title>Campus Map</title>
<!-- Leaflet -->
<link rel="stylesheet" href="src/js/lib/leaflet/leaflet.css" />
<script src="src/js/lib/leaflet/leaflet.js"></script>
<!-- Infusion -->
<script src="src/js/lib/infusion/infusion-all.js"></script>
<!-- Normalize -->
<link rel="stylesheet" href="src/css/lib/normalize.css" />
<!-- Project files -->
<link rel="stylesheet" href="src/css/leaflet-infusion.css" />
<script src="src/js/leaflet-infusion.js"></script>
</head>
<body>
<h1>OCAD University Campus Map</h1>
<h2><a href="https://github.com/waharnum/pair-programming-meeting">Code Repo</a>: https://github.com/waharnum/pair-programming-meeting</h2>
<h2><a href="http://rawgit.com/waharnum/pair-programming-meeting/master/index.html">RawGit</a>: https://rawgit.com/waharnum/pair-programming-meeting/master/index.html</h2>
<div class="flc-mapContainer">
<div class="flc-mapPanel"></div>
</div>
<script>
$(document).ready( function() {
fluid.leaflet.map(".flc-mapContainer", {
});
});
</script>
</body>
</html>