Google マップ V2 から V3 への移行プロジェクトに取り組んでいますが、次の作業を行うことができません。
<!DOCTYPE html>
<html>
<head>
<script
src="http://maps.googleapis.com/maps/api/js?key=myApiKey&sensor=false">
</script>
<script>
function initialize()
{
var map=new google.maps.Map(document.getElementById("googleMap"));
map.setCenter(new google.maps.LatLng(51.508742,-0.120850),5);
}
google.maps.event.addDomListener(window, 'load', initialize);
</script>
</head>
<body>
<div id="googleMap" style="width:500px;height:380px;"></div>
</body>
</html>
google.maps.Map
実際には、新しい関数で options パラメータを使用したくありません。map.center 関数を使用してマップを中央に配置したい。