This repository has been archived by the owner on Jan 19, 2024. It is now read-only.
forked from ubilabs/geocomplete
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmultiple_fields.html
77 lines (56 loc) · 2 KB
/
multiple_fields.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<!DOCTYPE html>
<html>
<head>
<title>$.geocomplete()</title>
<meta charset="UTF-8">
<link rel="stylesheet" type="text/css" href="styles.css" />
<style type="text/css" media="screen">
form { width: 300px; float: left; }
fieldset { width: 320px; margin-top: 20px}
fieldset label { display: block; margin: 0.5em 0 0em; }
fieldset input { width: 95%; }
.location { margin-top: 20px; }
</style>
</head>
<body>
<form>
<div class="location">
<input class="geocomplete" type="text" placeholder="Type in an address" value="Empire State Bldg" />
<input class="find" type="button" value="find" />
<fieldset class="details">
<h3>Address-Details</h3>
<label>Latitude</label>
<input name="lat" type="text" value="">
<label>Longitude</label>
<input name="lng" type="text" value="">
</fieldset>
</div>
<div class="location">
<input class="geocomplete" type="text" placeholder="Type in an address" value="Eiffel Tower" />
<input class="find" type="button" value="find" />
<fieldset class="details">
<h3>Address-Details</h3>
<label>Latitude</label>
<input name="lat" type="text" value="">
<label>Longitude</label>
<input name="lng" type="text" value="">
</fieldset>
</div>
</form>
<script src="http://maps.googleapis.com/maps/api/js?sensor=false&libraries=places"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<script src="../jquery.geocomplete.js"></script>
<script>
$(function(){
$(".geocomplete").geocomplete({
details: ".details",
detailsScope: '.location',
types: ["geocode", "establishment"],
});
$(".find").click(function(){
$(this).parents(".location").find(".geocomplete").trigger("geocode");
});
});
</script>
</body>
</html>