-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
54 lines (50 loc) · 2.11 KB
/
index.html
File metadata and controls
54 lines (50 loc) · 2.11 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="initial-scale=1,maximum-scale=1,user-scalable=no">
<title>Connect America Phase II Auction: Final Eligible Areas - FCC Maps</title>
<link rel="stylesheet" href="https://js.arcgis.com/4.3/esri/css/main.css">
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<main class="map-container">
<div id="btn-openLayerCtrl" class="esri-ui-corner">
<div class="icon-layers esri-component esri-widget-button esri-widget"></div>
</div>
<div id="map"></div>
<div class="map-legend">
<table>
<thead>
<tr>
<td colspan="3"><span class="icon icon-list"></span> <span class="map-legend-name">Map Legend</span>
<button id="btn-closeLegend" class="btn btn-xs pull-right"><span class="icon icon-close"></span> <span class="sr-only">Hide legend</span></button>
</td>
</tr>
</thead>
<tbody>
<tr>
<td>
<div class="key-symbol" style="background-color:#F1A340"></div>
</td>
<td>Auction-eligible blocks</td>
</tr>
<tr>
<td>
<div class="key-symbol" style="background-color:#998EC3 "></div>
</td>
<td>Auction-eligible block groups (bidding units)</td>
</tr>
</tbody>
</table>
</div>
<button id="btn-openLegend" class="btn legend__icon" title="Map Legend"><span class="icon icon-list"></span></button>
</main>
<script src="//code.jquery.com/jquery-1.11.2.min.js"></script>
<script>
window.jQuery || document.write('<script src="../js/vendor/jquery-1.11.2.min.js"><\/script>')
</script>
<script src="https://js.arcgis.com/4.3/"></script>
<script src="js/app.js"></script>
</body>
</html>