-
Notifications
You must be signed in to change notification settings - Fork 886
/
05_Interpreting Geocoding Responses.html
76 lines (75 loc) · 2.43 KB
/
05_Interpreting Geocoding Responses.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
<!-- This is the corresponding "starter code" for 05_Interpreting Geocoding Responses in Udacity
and Google's Maps API Course, Lesson 2 -->
<!DOCTYPE html>
<html>
<head>
<title>Geocoding service</title>
<meta name="viewport" content="initial-scale=1.0, user-scalable=no">
<meta charset="utf-8">
<style>
html,
body {
height: 100%;
margin: 0;
padding: 0;
}
#map {
height: 100%;
}
#floating-panel {
position: absolute;
top: 10px;
left: 65%;
z-index: 5;
height:90%;
background-color: #fff;
padding: 5px;
border: 1px solid #999;
text-align: center;
font-family: 'Roboto','sans-serif';
line-height: 30px;
padding-left: 10px;
}
</style>
</head>
<body>
<div id="floating-panel">
<input id="address" type="textbox" VALUE="Red Fort, Delhi">
<input id="submit" type="button" value="Geocode">
<div id="firstComponent">
</div>
<div id="secondComponent">
</div>
</div>
<div id="map"></div>
<script>
function initMap() {
var map = new google.maps.Map(document.getElementById('map'), {
zoom: 8,
center: {lat: -34.397, lng: 150.644}
});
var geocoder = new google.maps.Geocoder();
document.getElementById('submit').addEventListener('click', function() {
geocodeAddress(geocoder, map);
});
}
function geocodeAddress(geocoder, resultsMap) {
var address = document.getElementById('address').value;
geocoder.geocode({'address': address}, function(results, status) {
if (status === google.maps.GeocoderStatus.OK) {
resultsMap.setCenter(results[0].geometry.location);
//TODO: Insert code here to take the first result's formatted address, and LOCATION.
document.getElementById('firstComponent').innerHTML="The Formatted Address is:"; // PUT STUFF HERE
document.getElementById('secondComponent').innerHTML="The Location is"; // PUT STUFF HERE
} else {
alert('Geocode was not successful for the following reason: ' + status);
}
});
}
</script>
<!--TODO: Insert your API Key in the below call to load the API.-->
<script async defer
src="https://maps.googleapis.com/maps/api/js?v=3&key=XXX&callback=initMap">
</script>
</body>
</html>