-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
37 lines (35 loc) · 946 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
28
29
30
31
32
33
34
35
36
37
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Demo: OSM Live Search</title>
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"
integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T"
crossorigin="anonymous"
/>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="container mt-5">
<input
type="text"
id="search"
autocomplete="off"
placeholder="Enter a location name"
class="form-control"
/>
</div>
<script
type="text/javascript"
src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"
></script>
<script type="text/javascript" src="index.js"></script>
<script>
$(document).ready(function() {
$('#search').OsmLiveSearch();
});
</script>
</body>
</html>