住所のそれぞれの値latLngを見つけてマップの中心に使用するプログラムを作成しようとしています。ここまでは私のコードですが、主な問題はジオコーダーから戻ってくる値を得ることです。ジオコーダーを使用してアドレスをGoogleマップの中心に設定する
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8"/>
<title>Google Maps Geocoding Demo</title>
<script src="http://maps.google.com/maps/api/js?sensor=false"
type="text/javascript"></script>
</head>
<body>
<div id="map" style="width: 700px; height: 700px"></div>
<script type="text/javascript">
var mapOptions = {
mapTypeId: google.maps.MapTypeId.TERRAIN,
center: new google.maps.LatLng(54.00, -3.00),
zoom: 4
};
var geocoder = new google.maps.Geocoder();
var address = '3410 Dr Martin Luther King Jr Blvd, New Bern, NC, US';
geocoder.geocode({'address': address}, function(results, status) {
if(status == google.maps.GeocoderStatus.OK)
{
var bounds = new google.maps.LatLngBounds();
document.write(bounds.extend(results[0].geometry.location));
map.fitBounds(bounds);
new google.maps.Marker(
{
position:results[0].geometry.location,
map: map
}
);
}
}
);
var map = new google.maps.Map(document.getElementById("map"), mapOptions);
</script>
</body>
</html>
ありがとうございます、これは魅力的でした。ソリューションを反映するようにコードを更新します。 – davelupt