-
Notifications
You must be signed in to change notification settings - Fork 0
/
usermap.html
27 lines (24 loc) · 1.1 KB
/
usermap.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width,initial-scale=1.0,minimum-scale=1.0,maximum-scale=1.0,user-scalable=no">
<title>今ココなう!</title>
<link rel="stylesheet" type="text/css" href="/static/iphone.css">
<link rel="stylesheet" type="text/css" href="/static/usermap.css">
<link rel="apple-touch-icon" href="/img/apple-touch-icon.png">
</head>
<body>
<div class="toolbar">
<h1 id="page_title">今ココなう!</h1>
<a href="javascript:location.href='/imakoko.html'" id="home_button" class="backButton">ホーム</a>
<a href="javascript:reloadList()" id="reload_button">更新</a>
<a href="javascript:changeListMode()" id="list_button" class="backButton">一覧</a>
</div>
<ul id="user_list"></ul>
<div id="map_canvas"></div>
<script type="text/javascript" src="http://maps.googleapis.com/maps/api/js?key=XXXXXXXX&libraries=geometry&sensor=false&language=ja®ion=JP"></script>
<script type="text/javascript" charset="UTF-8" src="/static/map.js"></script>
<script type="text/javascript" charset="UTF-8" src="/static/usermap.js"></script>
</body>
</html>