-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
54 lines (54 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="shortcut icon" href="favicon.ico">
<link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/css/bootstrap-material-design.min.css" integrity="sha384-wiLtUo1pmFeUYvSD8m88wY5hvDujGthQc5IOF5wJdOWq4ZhACRV0TpwX1WwX0goB" crossorigin="anonymous">
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/leaflet.css"
integrity="sha384-VzLXTJGPSyTLX6d96AxgkKvE/LRb7ECGyTxuwtpjHnVWVZs2gp5RDjeM/tgBnVdM" crossorigin="anonymous">
<link rel="stylesheet" href="style.css">
<script src="https://unpkg.com/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
<!-- Make sure you put this AFTER Leaflet's CSS -->
<script src="https://unpkg.com/[email protected]/dist/leaflet.js"
integrity="sha384-RFZC58YeKApoNsIbBxf4z6JJXmh+geBSgkCQXFyh+4tiFSJmJBt+2FbjxW7Ar16M" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/leaflet-ajax/2.1.0/leaflet.ajax.min.js"></script>
<title>CAMELS Basin Visualization</title>
</head>
<body>
<header class="navbar navbar-expand sticky-top navbar-dark bg-dark flex-column flex-md-row " id="header">
<ul class="navbar-nav mr-auto">
<!-- see https://getbootstrap.com/docs/4.0/components/navbar/ -->
<li class="nav-item">
<a class="navbar-brand col-sm-3 col-md-2 mr-0" href="#">CAMELS BASINS</a>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="dropdown01" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">Colormap used</a>
<div class="dropdown-menu" aria-labelledby="dropdown01" id="propertylist">
</div>
</li>
<li class="upload">
<input id="file" type="file" />
</li>
</ul>
</header>
<div class="container-fluid">
<div class="row flex-xl-nowrap" id="wrapper">
<div id="sidebar-wrapper" class="p-0">
<div id="splitbar"></div>
<div class="sidebar-sticky ml-auto p-2">
<div class="accordion" id="datasetList">
<div class="container" id="cols">
<p>click on one of the basins to view its information</p>
</div>
</div>
</div>
</div>
<main class="ml-auto p-0" id="map-container" role="main">
<div id="mapid"></div>
</main>
</div>
</div>
<script src="index.js"></script>
</body>
</html>