-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
109 lines (95 loc) · 3.94 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
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
<!DOCTYPE html>
<html>
<head>
<title>Map</title>
<meta charset="UTF-8">
<link href='http://fonts.googleapis.com/css?family=Droid+Sans:400,700|Droid+Serif' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Playfair+Display' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="css/list.css"> <!-- List style -->
<link rel="stylesheet" href="css/panel.css"> <!-- Slide in panel style -->
<script src="https://use.fontawesome.com/6c48f18e11.js"></script>
</head>
<body style="background: #312a2a;">
<fb:login-button scope="public_profile,user_friends,user_location,user_work_history,email" onlogin="checkLoginState();">
</fb:login-button>
<div id="status">
</div>
<!--<a id="panelButton" href="#0" class="cd-btn">I clicked on a city yo</a>-->
<p>
<div id="container" style="display: absolute;border: 7px solid #524e4e;"></div>
<main class="cd-main-content">
<div id="map" style="width:960px;height:778px;"></div>
<h3 id="title" style="
color:white;
position: absolute;
right: 200px;
font-size: 100px;
top: 500px;
font-family: 'Simplifica';
margin-bottom: -20px;
">small<br>
<span style="
font-size: 150px;
position: relative;
top: -50px;
">world</span></h3>
</main>
<div class="cd-panel from-right">
<header class="cd-panel-header">
<table>
<tr>
<td> <img id="city-img" src="img/sf.png" height="80" width="80"> <td>
<td>
<h1 id="city-name">San Francisco</h1>
<div style="float:right">
<img src="img/chevronright.png" height="40" width="40" class="cd-panel-close">
</div>
</td>
<td>
<img src="img/chevronright.png" height="40" width="40" class="cd-panel-close">
</td>
<tr>
</table>
</header>
<div class="cd-panel-container drop-target">
<div class="cd-panel-content">
<div id="users">
<input class="search" placeholder="Search" />
<button class="sort" data-sort="name">
Sort by name
</button>
<ul class="list annotated-list">
<li id="template" data-id="0">
<table>
<tr>
<td> <img src="img/test_profile_img.png" height="40" width="40" class="image" style="margin-right:5px"> </td>
<td class = "table-margin">
<h3 class="name"></h3>
<p class="company"></p>
</td>
<td>
<a href="your link here"> <i class="fa fa-facebook-square fa-2x table-margin-extra"></i></a>
<a href="your link here"> <i class="fa fa-linkedin-square fa-2x table-margin"></i></a>
<a href="your link here"> <i class="fa fa-twitter-square fa-2x table-margin"></i></a>
<a href="your link here"> <i class="fa fa-envelope fa-2x table-margin"></i></a>
</td>
<tr>
</table>
</li>
<img onclick="showMap()" src="img/map.png" style="width:40px; height:40px;"/>
</ul>
</div> <!-- cd-panel-content -->
</div> <!-- cd-panel-container -->
</div> <!-- cd-panel -->
<script src="https://code.jquery.com/jquery-3.1.0.min.js"></script>
<script type="text/javascript" src="js/three.min.js"></script>
<script type="text/javascript" src="js/OrbitControls.js"></script>
<script type="text/javascript" src="js/viewer.js"></script>
<script type="text/javascript" src="js/geocoding.js"></script>
<script type="text/javascript" src="js/fb.js"></script>
<script type="text/javascript" src="js/map.js"></script>
<script src="http://listjs.com/no-cdn/list.js"></script>
<script type="text/javascript" src="js/list.js"></script>
<script async defer src="https://maps.googleapis.com/maps/api/js?key=AIzaSyAlk0uhuUqfB-gycVjhKkKnsvOzOaTdwLM&callback=initMap"></script>
</body>
</html>