-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
27 lines (27 loc) · 997 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="ISO-8859-1">
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="keywords" content="circles, google maps, distance, estimator, trip distance estimator, bicycling, bike touring" />
<meta name="description" content="DistanceEstimator uses Google Maps API to draw circles of various distances to help with planning trips across multiple points." />
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Google Maps Trip Distance Estimator</title>
<script type="text/javascript" src="https://maps.googleapis.com/maps/api/js?key=AIzaSyC3ilaVNS5-jrWNHK8uEGwAsUMoYWPX2uQ"></script>
<script type="text/javascript" src="DistanceEstimator.js"></script>
<style>
html, body {
height: 100%;
margin: 0;
padding: 0;
}
#map {
height: 100%;
}
</style>
</head>
<body onload="load()">
<div id="map"></div>
</body>
</html>