forked from justingreco/puma
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
88 lines (83 loc) · 3.21 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
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
<!DOCTYPE html>
<html>
<head>
<title>Public Utilities Mapping Application</title>
<link rel="stylesheet" type="text/css" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/typeahead.js-bootstrap.css"/>
<link rel="stylesheet" href="css/main.css"/>
<link rel="stylesheet" href="http://js.arcgis.com/3.8/js/esri/css/esri.css">
<script src="http://js.arcgis.com/3.8/"></script>
<!--[if lt IE9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.3.0/respond.min.js"></script>
<![endif]-->
</head>
<body>
<nav class="navbar navbar-inverse" role="navigation">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-ex1-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="#">Public Utilities Mapping Application</a>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse navbar-ex1-collapse pull-right">
</div><!-- /.navbar-collapse -->
</nav>
<div class="container">
<div class="row">
<div class="col-xs-4">
<div>
<input id="searchInput" type="text" class="form-control typeahead" placeholder="Enter an address or a facility ID">
</div>
<div class="panel-group" id="accordion">
<div class="panel panel-default">
<div class="panel-heading">
<h4 class="panel-title">
<a data-toggle="collapse" data-parent="#accordion" href="#asbuiltPanel">
As-Builts
</a>
</h4>
</div>
<div id="asbuiltPanel" class="panel-collapse collapse in">
<div class="panel-body">
<input id="asbuiltInput" type="text" class="form-control typeahead" placeholder="Enter a project name">
<table id="asbuiltTable" class="table table-striped">
<thead>
<tr><th>Sheet</th><th>View</th><th>PDF</th>
</thead>
<tbody>
</tbody>
</table>
</div>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading">
<h4 class="panel-title">
<a data-toggle="collapse" data-parent="#accordion" href="#layerPanel">
Layers
</a>
</h4>
</div>
<div id="layerPanel" class="panel-collapse collapse">
<div class="panel-body">
</div>
</div>
</div>
</div>
</div>
<div id="map" class="col-xs-8">
</div>
</div>
</div>
<script type="text/javascript" src="https://code.jquery.com/jquery.js"></script>
<script type="text/javascript" src="js/bootstrap.min.js"></script>
<script type="text/javascript" src="js/typeahead.min.js"></script>
<script type="text/javascript" src="js/main.js"></script>
</body>
</html>