forked from homtec/thenextis
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index_mobile.html
76 lines (60 loc) · 2.67 KB
/
index_mobile.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
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="viewport" content="initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="white" />
<title>TheNextIs.com - find your place</title>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.1/jquery.min.js"></script>
<link rel="stylesheet" href="//cdn.leafletjs.com/leaflet-0.7.1/leaflet.css" />
<script src="//cdn.leafletjs.com/leaflet-0.7.1/leaflet.js"></script>
<link rel="stylesheet" href="app/app_mobile.css" />
<script src="app/app.js"></script>
<link href='http://fonts.googleapis.com/css?family=Open+Sans:400,300' rel='stylesheet' type='text/css'>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css">
<!-- Optional theme -->
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap-theme.min.css">
<!-- Latest compiled and minified JavaScript -->
<script src="//netdna.bootstrapcdn.com/bootstrap/3.0.0/js/bootstrap.min.js"></script>
<link href="//netdna.bootstrapcdn.com/font-awesome/3.2.1/css/font-awesome.css" rel="stylesheet">
<meta property="og:title" content="TheNextIs.com - find your place" />
<meta property="og:type" content="video.movie" />
<meta property="og:url" content="http://thenextis.com" />
</head>
<body>
<div id="inputarea">
THE NEXT
<select id="mydropdown" default="test">
<option value="" disabled selected>choose...</option>
<option value="Postbox">Postbox</option>
<option value="Playground">Playground</option>
<option value="Tabletennis">Tabletennis</option>
<option value="Pharmacy">Pharmacy</option>
<option value="ATM">ATM</option>
<option value="Taxi">Cabstand</option>
<option value="Fuel">Gas station</option>
<option value="Telephone">Telephone</option>
<option value="Water">Drinking water</option>
<option value="Charging">EV charging</option>
<option value="Bus station">Bus station</option>
</select>
IS<br>
<span id="loading" hidden="true"><i class="icon-spinner icon-spin icon-large"></i> searching for you...</span>
</div>
<div id="map" style="height: 100%"></div>
<div id="modal_no_pois" class="modal hide fade">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
<h3><i class="icon-frown"></i> No result</h3>
</div>
<div class="modal-body">
<p>There is no in 1 km range. </p>
</div>
<div class="modal-footer">
<a href="#" class="btn btn-primary">Close</a>
</div>
</div>
</body>
</html>