-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
36 lines (33 loc) · 1.38 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Draw circles around one or more location matches</title>
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
<!-- Font Awesome -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<!-- Tippy (Tooltips) -->
<link rel="stylesheet" href="css/tippy.css">
<!-- App CSS -->
<link rel="stylesheet" href="css/app.css">
</head>
<body>
<div id="googleMap" class="map"></div>
<input id="addressInput" type="text">
<input id="radiusSlider" class="radius-slider hidden" title="Radius (in miles): 1" type="range" min="1" max="10" step="1" value="1" oninput="updateRadius(this);">
<div class="box result-box no-animation hidden">
<span id="toggleResult" class="action" title="Click to view GeoJSON">
<span class="fa fa-file-text"></span>
</span>
<div id="geoJsonResult" class="text"></div>
</div>
<!-- Google Map -->
<script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyDUpIAZYCFy-BQqVXjVVqHxNW8EYzUWx6Q&callback=initMap&libraries=places,geometry"
async defer></script>
<!-- Tippy (Tooltips) -->
<script src="js/tippy.min.js"></script>
<!-- App JS -->
<script src="js/app.js"></script>
</body>
</html>