ページロード時の Google マップのインフォボックスの位置が間違っているか、少なくともマップの高さを 400/380px より低く設定している場合は間違っているようです http://jsfiddle.net/TbDzG/18/
var startLocation = new google.maps.LatLng(36.151685,-115.152438);
function initialize() {
var mapOptions = {
center: startLocation,
zoom: 8,
mapTypeId: google.maps.MapTypeId.ROADMAP
};
var map = new google.maps.Map(document.getElementById("map-canvas"),
mapOptions);
var marker = new google.maps.Marker({
position: startLocation,
map: map,
draggable:true,
animation: google.maps.Animation.DROP,
title:"Hello World!"
});
var infowindow = new google.maps.InfoWindow();
infowindow.setContent('some content here');
infowindow.open(map, marker);
}
google.maps.event.addDomListener(window, 'load', initialize);
それを正しい位置に移動し、マーカーを中央に配置する代わりにインフォボックスを中央に配置する方法についてのトリックを知っている人はいますか?