-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
49 lines (40 loc) · 1.35 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CSA Map</title>
<!-- Include Leaflet CSS and JS -->
<link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/leaflet.css"/>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.4.1/semantic.min.css"/>
<script src="https://unpkg.com/lunr/lunr.js"></script>
<link rel="stylesheet" href="assets/css/index.css">
</head>
<body>
<div id="searchbar" class="ui container mt-3">
<div class="ui centered grid">
<div class="row">
<div class="column">
<div class="ui action input">
<input type="text" id="searchInput" placeholder="Search..." onkeypress="searchOnEnter(event)">
<button class="ui button" onclick="filterResults()">Search</button>
</div>
</div>
</div>
</div>
</div>
<div id="map"></div>
<div id="sidebar" class="ui segment"></div>
<div class="ui modal">
<i class="close icon"></i>
<div class="header">Full Project Details</div>
<div
class="content">
<!-- Full project details content here -->
<p>Full project description...</p>
</div>
</div>
<script src="https://unpkg.com/[email protected]/dist/leaflet.js"></script>
<script src='assets/js/index.js'></script>
</body>
</html>