tableのセル内に100%サイズでGoogle Mapsを表示する

説明

tableタグ内のセルに100%サイズでマップを表示するには、tdタグとdivタグの両方にwidth="100%" height="100%"を指定します。divタグだけ横幅を100%、縦幅を100%指定しても期待通り動作しません。これは、その時点ではセルのサイズが確定していないためです。このため、tdタグにwidth="100%" height="100%"を指定しておけばdiv要素の幅が決定されるため地図が表示されるようになります。

Google API Expertが解説する Google Maps APIプログラミングガイド Google API Expertが解説する Google Maps APIプログラミングガイド。Google Maps API Expertが最新のGoogle Maps API等について解説しています。
アマゾンで購入する

サンプルコード [実行]

<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="utf-8">
<title>Google Maps API ver 3 Sample/グーグルマップAPIサンプル/Google Maps API样品</title>
<style type="text/css">
html,body,table {
height: 100%;
margin: 0px;
padding: 0px;
}
#gmap {
height: 100%;
width: 100%;
margin:0px;
padding:0px;
}
</style>
<script src="https://maps.googleapis.com/maps/api/js?sensor=false" type="text/javascript"></script>
</head>
<body>
<table border="1" >
<tr>
<td>blank</td>
<td width="100%" height="100%"><div id="gmap" style="height:100%;width:100%;"></div></td>
</tr>
</table>
<script type="text/javascript">
var map = new google.maps.Map(
document.getElementById("gmap"),{
zoom : 6,
center : new google.maps.LatLng(35.689160610317174, 139.70083951950073),
mapTypeId : google.maps.MapTypeId.ROADMAP
}
);
</script>
</body>
</html>