Created
March 28, 2011 18:38
-
-
Save jessegavin/890998 to your computer and use it in GitHub Desktop.
Answer to StackOverflow Question #5462820
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta name="viewport" content="initial-scale=1.0, user-scalable=no"/> | |
<meta http-equiv="content-type" content="text/html; charset=UTF-8"/> | |
<title>Google Maps JavaScript API v3 Example: Geocoding Simple</title> | |
<link href="http://code.google.com/apis/maps/documentation/javascript/examples/default.css" rel="stylesheet" type="text/css" /> | |
<script type="text/javascript" src="http://maps.google.com/maps/api/js?sensor=false"></script> | |
<script type="text/javascript"> | |
var geoResults = {}; | |
var geocoder; | |
var map; | |
function initialize() { | |
geocoder = new google.maps.Geocoder(); | |
var latlng = new google.maps.LatLng(-34.397, 150.644); | |
var myOptions = { | |
zoom: 8, | |
center: latlng, | |
mapTypeId: google.maps.MapTypeId.ROADMAP | |
} | |
map = new google.maps.Map(document.getElementById("map_canvas"), myOptions); | |
} | |
function codeAddress(id) { | |
var address = document.getElementById(id).value; | |
geocoder.geocode( { 'address': address}, function(results, status) { | |
if (status == google.maps.GeocoderStatus.OK) { | |
map.setCenter(results[0].geometry.location); | |
var marker = new google.maps.Marker({ | |
map: map, | |
position: results[0].geometry.location | |
}); | |
// store the results in the geoResults object | |
geoResults[id] = results[0].geometry.location; | |
doCalculation(); | |
} else { | |
alert("Geocode was not successful for the following reason: " + status); | |
} | |
}); | |
} | |
function doCalculation() { | |
if (typeof geoResults.address1 === "object" | |
&& typeof geoResults.address2 === "object") { | |
// Yay.. do something now. | |
// geoResults.address1 is a LatLng() object. | |
// geoResults.address2 is a LatLng() object. | |
} | |
} | |
</script> | |
</head> | |
<body onload="initialize()"> | |
<div> | |
<input id="address1" type="textbox" value="" style=" width:800px;height:30px;font-size:10px;"> | |
<input type="button" value="Geocode" onclick="codeAddress('address1')"> | |
</div> | |
<div> | |
<input id="address2" type="textbox" value="" style=" width:800px;height:30px;font-size:10px;"> | |
<input type="button" value="Geocode" onclick="codeAddress('address2')"> | |
</div> | |
<div id="map_canvas" style="height:90%;top:80px"></div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment