-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
63 lines (61 loc) · 2.35 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
<!doctype html>
<html lang=en>
<meta charset=utf-8 name=viewport content="width=device-width, initial-scale=1">
<title>Կանգառ</title>
<link rel=stylesheet href=./libs/css/jquery.mobile-1.4.5.min.css>
<link rel=stylesheet href=./helper/css/main.css>
<div data-role="page" id="map-page" data-url="map-page">
<div data-role="header" data-position="fixed">
<div class="segmented-control ui-bar-d">
<fieldset data-role="controlgroup" data-type="horizontal" data-mini="true">
<input name="item_checkbox" id="bus_checkbox" type="checkbox">
<label for="bus_checkbox">Ավտոբուս</label>
<input name="item_checkbox" id="station_checkbox" type="checkbox">
<label for="station_checkbox">Կանգառ</label>
<input type="checkbox" name="nearBusStop" id="nearBusStop">
<label for="nearBusStop" class="tupo">Մոտակա կանգառ</label>
<input type="checkbox" name="show_map" id="show_map">
<label for="show_map">Քարտեզ</label>
</fieldset>
</div>
</div>
<div role="main" class="ui-content">
<div class="main-content">
<form>
<div class="ui-field-contain">
<select id="bus_list" data-native-menu="false" class="filterable-select">
<option>Ընտրել ավտոբուս...</option>
</select>
</div>
</form>
<form>
<div class="ui-field-contain">
<select id="bus_station_list" data-native-menu="false" class="filterable-select">
<option>Ընտրել կանգառ...</option>
</select>
</div>
</form>
<table data-role="table" id="hours-table" data-mode="reflow" class="ui-responsive">
<thead>
<tr>
<th></th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
<div id="map" class="map"></div>
<div class="time"></div>
<div class="distance"></div>
<div class="tmp" style="display:none"></div>
<div class="tmp2" style="display:none"></div>
</div>
</div>
<script src=./libs/js/jquery-2.1.3.min.js></script>
<script src=./libs/js/jquery.mobile-1.4.5.min.js></script>
<script src=./helper/js/map.js></script>
<script src=http://maps.google.com/maps/api/js?sensor=true></script>
<script src=./libs/js/gmaps.js></script>
<script src=./helper/js/main.js></script>
</html>