-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
23 lines (23 loc) · 985 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Google Maps Distance</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1>Google Maps Distance</h1>
<p>Multiple addresses (<a href="https://developers.google.com/places/web-service/autocomplete">place autocomplete</a>) with address number validation (Brazilian address) and distance (<a href="https://developers.google.com/maps/documentation/distance-matrix/start">distance-matrix</a>).</p>
<div class="main">
<div class="control">
<button id="addAddress">Add address</button>
<div class="total_distance"></div>
</div>
</div>
<script src="https://unpkg.com/[email protected]/dist/jquery.js"></script>
<script src="https://maps.googleapis.com/maps/api/js?v=3.exp&libraries=places"></script>
<script src="app.js"></script>
</body>
</html>