-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
31 lines (29 loc) · 931 Bytes
/
index.html
File metadata and controls
31 lines (29 loc) · 931 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>UMD Webcam Map</title>
<meta name="viewport" content="initial-scale=1.0"/>
<meta charset="utf-8"/>
<meta property="og:site_name" content="UMD Webcams"/>
<meta property="og:image" content="https://upload.wikimedia.org/wikipedia/commons/a/a1/Three_Surveillance_cameras.jpg"/>
<meta property="og:title" content="UMD Webcams"/>
<link rel="image_src" href="https://upload.wikimedia.org/wikipedia/commons/a/a1/Three_Surveillance_cameras.jpg" />
<style>
html, body {
height: 100%;
margin: 0;
padding: 0;
}
#map {
height: 100%;
}
</style>
</head>
<body>
<div id="map"></div>
<script src="webcamlistjs2.js"></script>
<script src="webcamsjs2.js"></script>
<script src="https://maps.googleapis.com/maps/api/js?key=YOUR_KEY_HERE&callback=initMap"
async defer></script>
</body>
</html>