-
Notifications
You must be signed in to change notification settings - Fork 0
/
kolhapurIndex.html
52 lines (44 loc) · 1.67 KB
/
kolhapurIndex.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Explore Kolhapur</title>
<!-- leaflet css -->
<link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/leaflet.css" />
<link rel="stylesheet" href="kolhapurStyle.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css">
</head>
<body>
<div class="navbar">
<button id="homeButton">Home</button>
<button id="aboutButton">About</button>
<button id="mapButton">Street</button>
</div>
<div id="map"></div>
<div id="desktop-overlay" class="overlay">
<h2>Sites</h2>
<input type="text" id="desktopSearchInput" placeholder="Search markers...">
<ul id="desktopMarkerNames"></ul>
</div>
<div id="draggable-overlay" class="draggable-overlay">
<div id="drag-handle" class="drag-handle"></div>
<div id="overlay-content" class="overlay-content">
<h2>Sites</h2>
<input type="text" id="mobileSearchInput" placeholder="Search markers...">
<ul id="mobileMarkerNames"></ul>
</div>
</div>
<div id="info-overlay" class="info-overlay">
<button id="back-button">Back</button>
<button id="close-button">Close</button>
<h2 id="marker-title"></h2>
<p id="marker-info"></p>
</div>
<!-- <div class="references">
<button id="references"> Show References</button>
</div> -->
</body>
</html>
<script src="https://unpkg.com/[email protected]/dist/leaflet.js"></script>
<script src="kolhapurScript.js"></script>