カスタム infoBox の中心にマップを配置しようとしています。代わりに、マップ マーカーから遠く離れた、まったく別の場所に移動しています。これが私のコードです:
var projection = this.getProjection(),
centerX = point.x - (125)/2,
centerY = point.y - (120)/2,
centerPoint = new google.maps.Point(centerX, centerY);
var latLngOfBoxTop = projection.fromContainerPixelToLatLng(centerPoint);
this.map.panTo(latLngOfBoxTop);
マップ上のポイントに移動するより良い方法は何ですか?