-
Notifications
You must be signed in to change notification settings - Fork 65
/
Copy pathindex.html
51 lines (35 loc) · 2.12 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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Google Maps API v3: Busca de endereço e Autocomplete - Demo</title>
<link href="http://fonts.googleapis.com/css?family=Open+Sans:600" type="text/css" rel="stylesheet" />
<link href="estilo.css" type="text/css" rel="stylesheet" />
<script type="text/javascript" src="http://maps.googleapis.com/maps/api/js?sensor=false"></script>
<script type="text/javascript" src="jquery.min.js"></script>
<script type="text/javascript" src="mapa.js"></script>
<script type="text/javascript" src="jquery-ui.custom.min.js"></script>
</head>
<body>
<div id="apresentacao">
<h1>Google Maps API v3: Busca de endereço e Autocomplete - Demo</h1>
<form method="post" action="index.html">
<fieldset>
<legend>Google Maps API v3: Busca de endereço e Autocomplete - Demo</legend>
<div class="campos">
<label for="txtEndereco">Endereço:</label>
<input type="text" id="txtEndereco" name="txtEndereco" />
<input type="button" id="btnEndereco" name="btnEndereco" value="Mostrar no mapa" />
</div>
<div id="mapa"></div>
<input type="submit" value="Enviar" name="btnEnviar" />
<input type="hidden" id="txtLatitude" name="txtLatitude" />
<input type="hidden" id="txtLongitude" name="txtLongitude" />
</fieldset>
</form>
<div class="autores">
<p>Criado por: <a href="http://twitter.com/rodolfoprr" target="_blank">Rodolfo Pereira</a> | Estilizado por: <a href="http://twitter.com/jofelipe_" target="_blank">Jonathan Felipe</a></p>
</div>
</div>
</body>
</html>