forked from jshimazu/prepass
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmap.html
53 lines (48 loc) · 2.26 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8"/>
<title>ぷれぱ!</title>
<!-- Sets initial viewport load and disables zooming -->
<meta name="viewport" content="initial-scale=1, maximum-scale=1">
<!-- Makes your prototype chrome-less once bookmarked to your phone's home screen -->
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<link rel="apple-touch-icon-precomposed" href="img/icon.png" />
<!-- Include the compiled Ratchet CSS -->
<link href="css/ratchet.css" rel="stylesheet">
<!-- Include the compiled Ratchet JS -->
<script src="js/ratchet.js"></script>
<!-- Include fork origin -->
<link href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.1/css/bootstrap.min.css" rel="stylesheet">
<link href="css/main.css" rel="stylesheet">
<script src="http://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.1/js/bootstrap.min.js"></script>
<script type="text/javascript" src="http://maps.googleapis.com/maps/api/js?sensor=TRUE_OR_FALSE"></script>
<script src="js/main.js"></script>
<!-- Include bookmark_bubble -->
<script src="js/mobile-bookmark-bubble/bookmark_bubble.js"></script>
<script src="js/mobile-bookmark-bubble/example/example.js"></script>
</head>
<body>
<!-- Make sure all your bars are the first things in your <body> -->
<header class="bar bar-nav">
<h1 class="title">現在地近くのプレパスが使えるスポット</h1>
</header>
<div class="content">
<div id="loading" style="font-color:#ffffff">Now Loading....</div>
<div id="map_canvas" style="width:640px; height:600px"></div>
</div>
<nav class="bar bar-tab">
<a class="tab-item active" href="#">
食べる
</a>
<a class="tab-item" href="#">
遊ぶ
</a>
<a class="tab-item" href="#">
買う
</a>
</nav>
</body>
</html>