-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
27 lines (25 loc) · 956 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>MapLibre GL JS with Geocoder</title>
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
<link rel='stylesheet' href='https://unpkg.com/[email protected]/dist/maplibre-gl.css' />
<script src='https://unpkg.com/[email protected]/dist/maplibre-gl.js'></script>
<script src="https://unpkg.com/[email protected]/dist/pmtiles.js"></script>
<link href="styles.css" rel="stylesheet" />
</head>
<body>
<div id="map"></div>
<div id="geocoder">
<div class="search-container">
<input type="text" id="addressInput" placeholder="Enter an address">
<button id="clearInput" class="clear-button">❌</button>
</div>
<ul id="searchResults"></ul>
</div>
<script src="https://unpkg.com/maplibre-gl@latest/dist/maplibre-gl.js"></script>
<script src="main.js"></script>
<script src="photon_geocode.js"></script>
</body>
</html>