-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
41 lines (38 loc) · 1.56 KB
/
index.html
File metadata and controls
41 lines (38 loc) · 1.56 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
31
32
33
34
35
36
37
38
39
40
41
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>PlacesWeb</title>
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.7.1/dist/leaflet.css"
integrity="sha512-xodZBNTC5n17Xt2atTPuE1HxjVMSvLVW9ocqUKLsCC5CXdbqCmblAshOMAS6/keqq/sMZMZ19scR4PsZChSR7A=="
crossorigin="" />
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet" />
<script src="https://cdn.jsdelivr.net/npm/@fancyapps/ui@4.0/dist/fancybox.umd.js"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fancyapps/ui@4.0/dist/fancybox.css" />
</head>
<body>
<div class="container">
<input type="text" id="search" placeholder=" Search" autocomplete="off" class="searchField fontAwesome">
<div id="recentPlaces" style="display: none;" class="box">
</div>
<div id="selectedPlace" style="display: none;">
</div>
</div>
<div class="opt">
<div class="opt1">
<div class="button">
<a data-fancybox data-type="iframe" href="options.html">My Settings</a>
</div>
</div>
<div class="opt2">
<div class="button">
<a data-fancybox data-type="iframe" href="favorites.html">My Favorites</a>
</div>
</div>
</div>
<div id="map"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>