-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
74 lines (66 loc) · 2.7 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
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<title>Land Patent Platter</title>
<link rel="stylesheet" href="./style.css">
</head>
<body>
<div class="platHeader">
<h1 class="platTitle">Township</h1>
<div class="controls">
<div class="dropdown">
<button id="townshipButton" class="dropbtn">Select Township</button>
<div id="selector"></div>
</div>
<button id="animate">Animate</button>
<input type="checkbox" id="drawColors" checked>Color Code</input>
<input type="checkbox" id="drawBorders" checked>Draw Borders</input>
<input type="checkbox" id="showNames" checked>Show Names</input>
<input type="checkbox" id="showBackground" checked>Show Background Map</input>
<div class="slidecontainer">
<input type="range" min="1" max="100" value="100" class="slider" id="dateRange">
</div>
</div>
<p>As of <span id="dateDisplay"></span></p>
</div>
<div class="township"></div>
<div class="controls" style="text-align: right">
<p id="printerLink"><a id="downloadLink" href="#">Download Map</a> || Make Printer Friendly: <a href="#" id="printMap">Map Only</a> | <a href="#" id="printIndex">Index Only</a> | <a href="#" id="printBoth">Both</a> (Click title at top to revert.)</p>
</div>
<div class="index">
<input type="text" id="tableSearch" class="controls" placeholder="Filter by last name...">
<input type="text" id="tableSearchSec" class="controls" placeholder="Filter by section...">
<table id="indexTable">
<tr>
<th>Accession</th>
<th id="nameHeader" class="sortable">Names</th>
<th id="dateHeader" class="sortable">Date</th>
<th>Township/Range</th>
<th>Aliquots</th>
<th id="sectionHeader" class="sortable">Sec</th>
<th>County</th>
</tr>
</table>
</div>
<div class="controls">
<p>Created with data from the <a href="http://glorecords.blm.gov/">Bureau of Land Management, Eastern States Office</a> and <a href="https://www.openstreetmap.org">Open Street Map</a>. Part of <a href="https://wildcathistory.net">WildcatHistory.net</a></p>
</div>
<div id="myModal" class="modal">
<div class="modal-content">
<span class="close">×</span>
<h3>Names</h3>
<p class="modalNames"></p>
<h3>Date Granted</h3>
<p class="modalDate"></p>
<h3>Aliquots</h3>
<p class="modalAliquots"></p>
<p>Link To GLO Record: <a href="#" class="modalLink"></a></p>
<p>Search for Purchase Receipt in Indiana Archives: <a href="#" class="modalSearchLink"></a></p>
</div>
</div>
<script src='https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js'></script>
<script src='https://s3.amazonaws.com/stitch-sdks/js/bundles/4/stitch.js'></script>
<script src="./script.js"></script>
</body>
</html>