-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtutorial.html
More file actions
126 lines (96 loc) · 6.29 KB
/
tutorial.html
File metadata and controls
126 lines (96 loc) · 6.29 KB
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
118
119
120
121
122
123
124
125
126
<!DOCTYPE html>
<html lang="en">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<head>
<title>Tutorial</title>
<!-- CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css" integrity="sha384-9aIt2nRpC12Uk9gS9baDl411NQApFmC26EwAOH8WgZl5MYYxFfc+NcPb1dKGj7Sk" crossorigin="anonymous">
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.6.0/dist/leaflet.css" integrity="sha512-xwE/Az9zrjBIphAcBb3F6JVqxf46+CDLwfLMHloNu6KEQCAWi6HcDUbeOfBIptF7tcCzusKFjFw2yuvEpDL9wQ==" crossorigin="" />
<link rel="stylesheet" href="./css/main.css">
<!-- JavaScript libraries (custom are at the bottom)-->
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.0/dist/umd/popper.min.js" integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/js/bootstrap.min.js" integrity="sha384-OgVRvuATP1z7JjHLkuOU7Xw704+h835Lr+6QL9UvYjZE3Ipu6Tp75j7Bh/kR0JKI" crossorigin="anonymous"></script>
<script src="https://unpkg.com/leaflet@1.6.0/dist/leaflet.js" integrity="sha512-gZwIG9x3wUXg2hdXF6+rVkLF/0Vi9U8D2Ntg4Ga5I5BZpVkVxlJWbSQtXPSiUTtC0TjtGOmxa1AJPuV0CPthew==" crossorigin=""></script>
</head>
<body>
<nav class="navbar navbar-expand-lg fixed-top navbar-dark bg-dark">
<a class="navbar-brand" href="index.html">Purple Line | Plan Integration Tool</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav ml-auto">
<li class="nav-item">
<a class="nav-link" href="index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="map.html">Map</a>
</li>
<li class="nav-item active">
<a class="nav-link" href="tutorial.html">Tutorial</a>
</li>
<li class="nav-item">
<a class="nav-link" href="docs.html">Documentation</a>
</li>
<li class="nav-item">
<a class="nav-link" href="contact.html">Contact</a>
</li>
</ul>
</div>
</nav>
<div id="content" class="container-fluid text-dark">
<div class="row">
<div class="col-10 offset-1 mt-4">
<nav aria-label="breadcrumb" id="breadcrumb">
<ol class="breadcrumb">
<li class="breadcrumb-item"><a href="index.html">Home</a></li>
<li class="breadcrumb-item active" aria-current="page">Tutorial</li>
</ol>
</nav>
</div>
</div>
<div class="row">
<div class="col-10 offset-1" id="tutorial">
<h1>Tutorial</h1>
<p>
Follow the directions below to navigate through the Plan Integration Tool under a specific scenario. Walking through the scenario should help you understand how the tool works, and allow you to customize it to your own needs.
</p>
<ol>
<li>
Navigate to the tab labeled <strong>Map</strong>.
</li>
<li>
Once the <strong>Map</strong> page loads, navigate to the panel on the left side of the page. At the top of the panel, there are three buttons: <strong>Intro, Query,</strong> and <strong>Analyze</strong>. Select <strong>Query</strong>.
</li>
<li>
Once you select <strong>Query</strong>, you are presented with a form, with three dropdown lists. In the first dropdown list, at the top of the panel, you are prompted to Select a table. You can learn more about the tables in the
<a href="./docs.html" target="blank">Documentation</a> page of this website, but for now, choose <strong>Land Use Plans</strong> from the dropdown list.
</li>
<li>
Once you select <strong>Land Use Plans</strong>, a list of selection options will appear below the dropdown list. These selection options are the attributes of <strong>Land Use Plans</strong>, and you will be using these attributes
to narrow down the information that gets displayed on the map. Select the option labeled <strong>pln_typ</strong>.
</li>
<li>
Below the list of selection options, there is another dropdown list: <strong>Select an operator</strong>. Select <strong>equal</strong> to from the dropdown list.
</li>
<li>
Below the <strong>Select an operator</strong> dropdown list is the final dropdown list: Select a value after picking a column. Select <strong>Master Plan</strong> from the dropdown list.
</li>
<li>
Finally, select the <strong>Submit</strong> button at the bottom of the panel.
</li>
</ol>
<p>
This completes your search for data: the data that will display on the map are <strong>Land Use Plans</strong> where the <strong>pln_typ</strong> (or Plan Type) is equal to <strong>Master Plans</strong>. You can remix this format using
different tables, different attributes, different operators, and different values to find the information that is relevant to you and your plans.
</p>
</div>
</div>
</div>
<footer id="footer" class="bg-dark text-light pt-3 pr-3">
<p>© Cyrus Chimento | 2020</p>
</footer>
</body>
</html>