高さ「マップ」のサイズを変更するためのGoogleマップAPIからサンプルコードを取得します
var recalcHeight = function() {
$("#map").height($(window).height() - 100); //Example
map && google.maps.event.trigger(map, 'resize'); //(*) Don't understand this line
};
$(window).resize(recalcHeight);
recalcHeight();
OK、私の php ファイルには div タグがあります: 1. 上記の (*) 行がわかりません。