forked from stevage/which-geocoder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
41 lines (38 loc) · 2.1 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
37
38
39
40
41
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" href="lib/bootstrap.min.css" integrity="sha384-Zug+QiDoJOrZ5t4lssLdxGhVrurbmBWopoEl+M6BdEfwnCJZtKxi1KgxUyJq13dy" crossorigin="anonymous">
<link rel="stylesheet" href="styles.css">
<title>Which geocoder should I use?</title>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-54473923-11"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-54473923-11');
</script>
</head>
<nav class="jumbotron-fluid bg-light title">
<h1 class="display-1">Help! I need a geocoder.</h1>
Geocoding service APIs from dozens of different providers analysed to help you choose. <a href="https://github.com/stevage/which-geocoder">More information.</a>
</nav><body class="container-fluid">
<div class="row">
<div class="col-md-3">
<div class="form">
<div id="form"></div>
</div>
</div>
<div class="col-lg-9">
<div id="results"></div>
</div>
</div>
<div class="fixed-bottom credit">Built by <b><a href="https://stevebennett.me">Steve Bennett</a></b>. Github: <a href="https://github.com/stevage">Stevage</a>. Twitter: <a href="https://twitter.com/stevage1">@stevage1</a>. Disclaimer: Geocoder plans change all the time. Obviously. Use at your own risk.</div>
</body>
<script src="lib/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>
<script src="lib/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
<script src="lib/bootstrap.min.js" integrity="sha384-a5N7Y/aK3qNeh15eJKGWxsqtnX/wWdSZSKp+81YjTmS15nvnvxKHuzaWwXHDli+4" crossorigin="anonymous"></script>
<script src="index.js"></script>
</html>