This repository has been archived by the owner on Jul 7, 2021. It is now read-only.
forked from WRI-Cities/static-GTFS-manager
-
Notifications
You must be signed in to change notification settings - Fork 1
/
shapes.html
117 lines (95 loc) · 3.05 KB
/
shapes.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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
<!DOCTYPE html>
<html>
<head>
<meta content="text/html; charset=utf-8" http-equiv="Content-Type">
<title>Shapes</title>
<link href="lib/jquery-ui.min.css" rel="stylesheet">
<link href="lib/tabulator.min.css" rel="stylesheet">
<link href="lib/bootstrap.v4.0.0.min.css" crossorigin="anonymous" alt="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" rel="stylesheet">
<link rel="stylesheet" href="lib/chosen/chosen.min.css">
<link href="js/commonstyle.css" rel="stylesheet">
<!-- Put the CSSs first and JSs next -->
<script src="lib/jquery-3.3.1.min.js" type="text/javascript"></script>
<script src="lib/jquery-ui.min.js" type="text/javascript"></script>
<script src="lib/tabulator.js" type="text/javascript"></script>
<script src="lib/popper.v1.12.9.min.js" crossorigin="anonymous" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" alt="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js"></script>
<script src="lib/bootstrap.v4.0.0.min.js" crossorigin="anonymous" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" alt="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js">
</script>
<script src="lib/papaparse.min.js" type="text/javascript"></script>
<script src="lib/chosen/chosen.jquery.min.js" type="text/javascript"></script>
<style>
#shapes-table{
height: 350px;
}
#stop-times-table {
height: 300px;
}
.ui-autocomplete {
font-size: 1em;
}
#newTripHTML {
border-radius: 5px;
padding: 15px;
border: 1px black solid;
/*box-shadow:0px 0px 20px black; */
}
#shapeApplyHTML {
border-radius: 5px;
padding: 15px;
border: 1px black solid;
/*box-shadow:0px 0px 20px black; */
}
</style></head>
<body>
<div id="navBar"></div>
<div class="container">
<h2>Shapes</h2>
<div id="accordion">
<h4>Instructions</h4>
<div>
<b>Shapes tab</b>
<ul>
<li>Do Instructions here.</li>
</ul>
<b>Draw tab</b>
<ul>
<li>Steps.</li>
</ul>
<p>See the <a href="https://github.com/google/transit/blob/master/gtfs/spec/en/reference.md#shapestxt" target="_blank">shapes.txt specs here</a> for learning more about shapes in GTFS.</p>
<p>Note: </p>
</div>
</div><!-- Accordion over -->
<br>
<h1>UNDER CONSTRUCTION</h1>
<!-- Tabs Menu -->
<div id="tabs">
<ul>
<li><a href="#tab1">Shapes</a></li>
<li><a href="#tab2">Upload a Shape</a></li>
<li><a href="#tab3">Draw a Shape</a></li>
</ul>
<!-- SHAPES -->
<div id="tab1">
<h5>Pick a shape_id: <select id="shapeSelect"></select> <small><span id="shapeSelectStatus"></span></small></h5>
<h5>Shapes</h5>
<div id="shapes-table"></div>
<br>
</div> <!-- SHAPES tab end -->
<!-- UPLOAD SHAPE -->
<div id="tab2">
<h5>Upload a Shape</h5>
<div class="row">
<div class="col-md-4 alert alert-info">
</div>
<div class="col-md-8">
</div>
</div>
</div>
</div><!-- tabs over-->
</div>
<br><br><br>
<script src="config/settings.js" type="text/javascript"></script>
<script src="js/commonfuncs.js"></script>
<script src="js/shapes.js"></script>
</body>
</html>