このマップのコードを「模倣」しようとしました:
https://google-developers.appspot.com/maps/documentation/javascript/examples/geocoding-simple
Syney を Porto Alegre に変更するだけです (フォームの値と座標も)。しかし、マップ キャンバスが画面に表示されないため、問題が発生しました。コードを確認しましたが、タイプミスや構文ミスは見つかりませんでした。
誰かが助けてくれることを願っています。実際、私は Google Maps API よりも Fusion Tables に慣れています。
<!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>GEOCODER</title>
<link href="/maps/documentation/javascript/examples/default.css" rel="stylesheet">
<script src="https://maps.google.com/maps/api/js?sensor=false"></script>
<script>
var geocoder;
var map;
function initialize() {
geocoder = new google.maps.Geocoder();
var latlng = new google.maps.LatLng(-30.027704, -51,228735);
var myOptions = {
zoom: 8,
center: latlng,
mapTypeId: google.maps.MapTypeId.ROADMAP
}
map = new google.maps.Map(document.getElementById("map_canvas"), myOptions);
}
function codeAddress() {
var address = document.getElementById("address").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
});
} else {
alert("Geocode was not successful for the following reason: " + status);
}
);
}
}
</script>
</head>
<body onload="initialize()">
<div id="map_canvas" style="width: 320px; height: 480px;"></div>
<div>
<input id="address" type="textbox" value="Porto Alegre, Brasil">
<input type="button" value="Encode" onclick="codeAddress()">
</div>
</body>
</html>