-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmap_page.html
128 lines (102 loc) · 4.31 KB
/
map_page.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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
<!DOCTYPE html>
<html><head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<!-- ## SITE META ## -->
<meta charset="utf-8">
<titleH>Hodge Events</title>
<meta name="description" content="">
<meta name="author" content="Group1 - Cardiff Uni">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<!-- ## LOAD STYLSHEETS ## -->
<link rel="stylesheet" media="all" href="assets/css/style.css">
<link rel="stylesheet" href="assets/bootstrap/css/bootstrap.css" type="text/css">
<!-- ## GOOGLE FONTS ## -->
<link href="assets/css/css.css" rel="stylesheet" type="text/css">
<link href="assets/css/css_002.css" rel="stylesheet" type="text/css">
<link href="assets/css/css_003.css" rel="stylesheet" type="text/css">
</head>
<body>
<!-- ## HEADER ## -->
<header id="qcHeader">
<div class="row">
<!-- ## LOGO ## -->
<div id="qcLogo" class="col-6 col">
<a href=""><img src="logo-header.png" alt=""></a>
</div>
<!-- ## SITE NAVIGATION ## -->
<nav id="qcPriNav" class="col-6 col">
<ul class="clearfix">
<li><a href=""><i class="icon-calendar-2 icon"></i> <span>Calendar</span></a></li>
<li class="current"><a href="""><i class="icon-ticket icon"></i> <span>Add Events</span></a></li>
</ul>
</nav>
</div>
</header>
<!-- ## HEADER END ## -->
<style>
/* Set the size of the div element that contains the map */
#map {
height: 400px; /* The height is 400 pixels */
width: 100%; /* The width is the width of the web page */
}
</style>
<!-- ## CONTENT WRAPPER ## -->
<div id="qcContentWrapper">
<!-- ## PAGE TITLE ## -->
<section id="qcSecbar">
<div class="qcContainer">
<h1>Maps</span></h1>
</div>
</section>
<!-- ## PAGE CONTENT ## -->
<section id="qcContent">
<div class="qcContainer">
<div id="map"></div>
<script>
// Initialize and add the map
function initMap() {
// The location of Uluru
var uluru = {lat: 51.589662, lng: -3.0003942};
// The map, centered at Uluru
var map = new google.maps.Map(
document.getElementById('map'), {zoom: 18, center: uluru});
// The marker, positioned at Uluru
var marker = new google.maps.Marker({position: uluru, map: map});
}
</script>
<!--Load the API from the specified URL
* The async attribute allows the browser to render the page while the API loads
* The key parameter will contain your own API key (which is not needed for this tutorial)
* The callback parameter executes the initMap() function
-->
<script async defer
src="https://maps.googleapis.com/maps/api/js?key=AIzaSyBL-sFJH5OPFEQA7L4lb5jfcpb2v50Tm1I&callback=initMap">
</script>
</div>
</section>
<!-- ## PAGE CONTENT END ## -->
</div>
<!-- ## CONTENT WRAPPER END ## -->
<!-- ## FOOTER ## -->
<footer id="qcFooter" class="clearfix">
<div class="qcContainer">
<!-- ## FOOTER LOGO ## -->
<div id="qcFooterLogo" class="col-7 col">
<a href="#">
<img src="logo-header.png" alt="LOGO">
</a>
</div>
<!-- ## FOOTER COPYRIGHTS ## -->
<div id="qcFooterPara" class="col-5 col">
<p>© Group1 Msc Students | Cardiff University</span></p>
</div>
</div>
</footer>
<!-- ## FOOTER END ## -->
<!-- ## LOAD JAVASCRIPTS ## -->
<div class="fit-vids-style"><style> .fluid-width-video-wrapper { width: 100%; position: relative; padding: 0; } .fluid-width-video-wrapper iframe, .fluid-width-video-wrapper object, .fluid-width-video-wrapper embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; } </style></div><script src="2.js" type="text/javascript"></script>
<script src="assets/js/owl.js" type="text/javascript"></script>
<script src="assets/jslibrary.js" type="text/javascript"></script>
<script src="https://maps.googleapis.com/maps/api/js?v=3.exp&sensor=false&ver=3.5" type="text/javascript"></script>
<script src="assets/js/init.js" type="text/javascript"></script>
</body></html>