-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
30 lines (28 loc) · 1.16 KB
/
index.html
File metadata and controls
30 lines (28 loc) · 1.16 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Map Sidebar Template</title>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- CSS -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/css/materialize.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/leaflet/1.4.0/leaflet.css">
<link rel="stylesheet" href="./style.css">
<!-- JAVASCRIPT LIBRARIES -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/js/materialize.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/leaflet/1.4.0/leaflet.js"></script>
<script src="./script.js"></script>
</head>
<body class="deep-purple darken-3">
<nav class="deep-purple darken-4 z-depth-5">
<a href="#" class="brand-logo">Map Sidebar Template</a>
</nav>
<div class="row flex">
<!-- Map Element -->
<div class="col s12 m8" id="map"></div>
<!-- Sidebar -->
<div class="col s12 m4 grey darken-3" id="info-pane"></div>
</div>
</body>
</html>