マップの表示サイズを変更する

説明

マップのサイズを変更するにはタグのスタイルシートのwidth、heightプロパティを変更します。しかし、単純にスタイルシートでサイズを変更しただけでは、余白部分にマップが再描画されません。リサイズ後にはcheckResize()を使ってマップを再構築/再描画させる必要があります。
逆引きGoogle Maps APIリファレンス  詳しい解説などは逆引きGoogle Maps APIリファレンス、またはGoogle Maps APIリファレンスを参照してください。

サンプルコード [実行]

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8"/>
<title>Sample</title>
<script src="http://maps.google.com/maps?file=api&amp;v=2&amp;key=ABQIAAAAasAJryKxWJnBFVJa487d9hTHGAxTVT7IRADYa-JdYz7xQ8IQZBSthgDZdggYpQHsmm6WYtHstQFfLA" type="text/javascript"></script>
<script type="text/javascript">
//<![CDATA[
var map;
window.onload = function() {
map = new GMap2(document.getElementById("gmap"));
map.setCenter(new GLatLng(36, 137), 6);
}
function mapResize1() {
var divObj = document.getElementById("gmap");
divObj.style.width= "600px";
divObj.style.height= "600px";
}
function mapResize2() {
var divObj = document.getElementById("gmap");
divObj.style.width= "800px";
divObj.style.height= "800px";
map.checkResize();
}
//]]>
</script>
<div id="gmap" style="width: 150px; height: 150px"></div>
<form>
<input type="button" value="リサイズ" onClick="mapResize1()" />
<input type="button" value="リサイズして再描画" onClick="mapResize2()" />
</form>
</body>
</html>