-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
57 lines (50 loc) · 2.37 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<!-- preload locally hosted fonts here. strategy from https://sia.codes/posts/making-google-fonts-faster/ -->
<link rel="preload" as="font" type="font/woff2"
href="./fonts/montserrat-v15-latin-regular.woff2" crossorigin>
<link rel="preload" as="font" type="font/woff2"
href="./fonts/montserrat-v15-latin-italic.woff2" crossorigin>
<link rel="preload" as="font" type="font/woff2"
href="./fonts/montserrat-v15-latin-700.woff2" crossorigin>
<link rel="preload" as="font" type="font/woff2"
href="./fonts/montserrat-v15-latin-700italic.woff2" crossorigin>
<!-- local style sheet -->
<link href='style.css' rel='stylesheet' />
<script
src="https://code.jquery.com/jquery-3.5.1.min.js"
integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0="
crossorigin="anonymous"></script>
<script src='https://api.mapbox.com/mapbox-gl-js/v1.12.0/mapbox-gl.js'></script>
<link href='https://api.mapbox.com/mapbox-gl-js/v1.12.0/mapbox-gl.css' rel='stylesheet' />
</head>
<body>
<div class="wrapper">
<div class="top-bar">
<div id="description-box"></div>
</div>
<div id='map' style=''></div>
<!-- <div class="side-bar">
<button id="full-extent" class="loc-button"><p>Region</p></button>
<button id="north-br" class="loc-button"><p>North Baton Rouge</p></button>
<button id="ds" class="loc-button"><p>Denham Springs</p></button>
<button id="sorrento" class="loc-button">Sorrento</button>
<button id="baker" class="loc-button">Baker</button>
</div> -->
<div class="bottom-bar">
<div class="bottom-bar-row tier1">
<button type="button" id="amite-extent" title="Zoom to Amite River Watershed" class="loc-button" disabled></button>
</div>
<div id="communities-bar" class="bottom-bar-row tier2">
<button type="button" id="ascension-par" title="Zoom to Ascension Parish" class="loc-button" disabled></button>
<button type="button" id="denham-springs-cty" title="Zoom to Denham Springs" class="loc-button" disabled></button>
<button type="button" id="baker-cty" title="Zoom to Baker" class="loc-button" disabled></button>
<button type="button" id="plank-rd" title="Zoom to Plank Road Corridor" class="loc-button" disabled></button>
</div>
</div>
</div>
<script src='map.js'></script>
</body>
</html>