最初に地図の中央の位置(緯度経度)を指定する

説明

最初に地図の中央の位置(緯度経度)を指定するにはgoogle.maps.Map()の2番目のオプションパラメータcenterに緯度経度を示すLatLngオブジェクトを指定します。LatLngオブジェクトはnew google.maps.LatLng()としてインスタンス(オブジェクト)を生成しcenterパラメータに渡します。new google.maps.LatLng()は2つのパラメータが必要です。最初のパラメータが緯度、2番目のパラメータが経度になります。

Google Maps APIプログラミング入門 Google Maps API プログラミング入門。Google Maps API Expertである勝又雅史氏が最新のAPI ver3やGoogle Maps for Flashなどについて解説しています。
アマゾンで購入する

サンプルコード [実行]

<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="utf-8">
<title>Google Maps API ver 3 Sample/グーグルマップAPIサンプル/Google Maps API样品</title>
<link rel="stylesheet" href="css/main.css" type="text/css" media="all">
<script src="http://maps.google.com/maps/api/js?sensor=false" type="text/javascript"></script>
</head>
<body>
<div id="gmap"></div>
<script type="text/javascript">
var map = new google.maps.Map(
document.getElementById("gmap"),{
zoom : 7,
center : new google.maps.LatLng(35.689160610317174, 139.70083951950073),
mapTypeId : google.maps.MapTypeId.ROADMAP
}
);
</script>
</body>
</html>