-
Notifications
You must be signed in to change notification settings - Fork 1
/
gmap.html
56 lines (53 loc) · 2.33 KB
/
gmap.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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="initial-scale=1.0, user-scalable=no">
<meta charset="utf-8">
<title>CODENAME LOBSTER</title>
<style>
html, body, #map-canvas {
height: 100%;
margin: 0px;
padding: 0px
}
</style>
<script src="https://maps.googleapis.com/maps/api/js"></script>
<!-- Load style sheets -->
<link rel="stylesheet" type="text/css" href="css/bootstrap.min.css" />
<link href='http://fonts.googleapis.com/css?family=Lobster' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Pacifico' rel='stylesheet' type='text/css'>
<link rel="stylesheet" type="text/css" href="main.css" />
<link rel="stylesheet" type="text/css" href="css/style.css" />
<link type="text/css" href="css/ui-lightness/jquery-ui-1.10.0.custom.css" rel="stylesheet" />
<!-- Load any supplemental Javascript libraries here -->
<script type="text/javascript" src="js/jquery.min.js"></script>
<script type="text/javascript" src="js/bootstrap.min.js"></script>
<script type="text/javascript" src="js/jquery-ui.custom.min.js"></script>
<script type="text/javascript" src="infoWindowZ.js"></script>
<!--Custom JS-->
<!--<script type="text/javascript" src="https://maps.googleapis.com/maps/api/js?v=3.exp&libraries=places&sensor=false"></script>-->
<script type="text/javascript" src="profile-resources.js"></script>
<script type="text/javascript" src="gmap.js"></script>
</head>
<body>
<div class="left_sidebar_container">
<div class="filters">
<h2 id="view_filter_list" onclick="toggle('filter')">Filters <span id="filterclick" class="glyphicon glyphicon-plus"></span></h2>
<div class="show" id="filter_list">
<h4>Genres</h4>
<ul id="genres" class="hide_bullets">
</ul>
<h4>Dates</h4>
<ul id="dates" class="hide_bullets">
</ul>
</div>
</div>
</div>
<div id="map-canvas"></div>
<div class="right_sidebar">
<h2 id="view_performance_list" onclick="toggle('performance')">Events As List <span id="performanceclick" class="glyphicon glyphicon-plus"></span></h2>
<div class="show" id="performance_list">
</div>
</div>
</body>
</html>