-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·52 lines (47 loc) · 1.93 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
42
43
44
45
46
47
48
49
50
51
52
<!doctype html>
<head>
<title>Calculo de Frete - Motoboy</title>
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-121994767-1"></script>
<script>function
gtag() { dataLayer.push(arguments) } window.dataLayer = window.dataLayer || [], gtag("js", new
Date), gtag("config", "UA-121994767-1")</script>
<meta name="author" content="Bruno Sousa">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm"
crossorigin="anonymous">
<link href="https://fonts.googleapis.com/css?family=Ubuntu" rel="stylesheet">
</head>
<body>
<script src="https://maps.google.com/maps?file=api&v=2&key=AIzaSyBZJDUkG83bcVMgdRoJPOotgt0v305l6W4"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.3.1/jquery.min.js" type="text/javascript"></script>
<script src="js/jquery.jmap.min-r72.js" type="text/javascript"></script>
<div class="row justify-content-center">
<div class="col-sm-7">
<script src="js/chama-mapa.js" type="text/javascript"></script>
<!-- CHAMAR MAPA -->
<div id="formulario" class="form-group">
<form action="/" id="corrida">
<label for="partida">Estou em: </label>
<input type="text" id="partida" class="form-control" value="Rua Augusto Carlos Bauman, São Paulo, São Paulo" />
<br/>
<label for="chegada">Irei para: </label>
<input type="text" id="chegada" class="form-control" value="Itaquera, São Paulo, São Paulo" />
<br />
<button type="submit" class="btn btn-primary">Calcular</button>
</form>
</div>
<div id="mostrador"></div>
<div id="mapa"></div>
<div id="aviso"></div>
<div id="direcoes"></div>
</div>
</div>
</body>
<style>
#partida,
button {
font-family: 'Ubuntu', sans-serif;
}
</style>
</html>