-
Notifications
You must be signed in to change notification settings - Fork 0
/
map.html
33 lines (33 loc) · 1.25 KB
/
map.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
<!DOCTYPE html>
<html>
<head>
<title>Map</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="viewport" content="initial-scale=1.0, user-scalable=no">
<link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.18/themes/base/jquery-ui.css">
<link rel="stylesheet" href="tweet.css">
<link rel="stylesheet" href="map.css">
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.18/jquery-ui.min.js"></script>
<script type="text/javascript" src="http://maps.googleapis.com/maps/api/js?key=AIzaSyDP3mgHOUJnwiXpBdhbpqoE76EzsBOFApo&sensor=false"></script>
<script type="text/javascript" src="tweet.js"></script>
<script type="text/javascript" src="map.js"></script>
</head>
<body>
<div id="sidebar">
<div id="location">
<table>
<tr>
<td><input id="loc" type="text" placeholder="Location..."></input></td>
<td><button id="go">Go</button></td>
<td><input type="checkbox" id="home"><label for="home">!</label></td>
</tr>
</table>
</div>
<div id="tweets_container">
<div id="tweets"></div>
</div>
</div>
<div id="map"></div>
</body>
</html>