-
Notifications
You must be signed in to change notification settings - Fork 30
/
index.html
36 lines (32 loc) · 1.46 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
<html>
<head>
<title>Memtech People</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" rel="stylesheet">
<link href='//fonts.googleapis.com/css?family=Montserrat:400,700' rel='stylesheet' type='text/css'>
<link href='css/style.css' rel='stylesheet' type='text/css'>
</head>
<body>
<div class="container-fluid">
<div id="map_container">
<ul id="control_list" class="list-group">
<li>
<input id="pac-input" class="controls" type="text" placeholder="Enter a location">
</li>
<li>
<label><input id="poi_chk" type="checkbox" checked>Show Points</label>
<label><input id="heatmap_chk" type="checkbox" >Show Heatmap</label>
</li>
</ul>
<div id="map"></div>
</div>
</div>
<script src="//code.jquery.com/jquery-1.12.0.min.js"></script>
<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>
<script src="//maps.googleapis.com/maps/api/js?libraries=places,visualization&key=AIzaSyDSXYG4XodpRBe_KkS9nK613pxEyHlED50"></script>
<script src="js/locations.js"></script>
<script src="js/main.js"></script>
</script>
</body>
</html>