ドキュメントを調べてきましたが、探しているものが見つかりません。
マップ上のクリックされたポイントのタイムゾーン オフセットを見つける必要があります (例: GMT +2:00)。必要なのは +2 の部分だけです。これが私がこれまでに持っているものです:
google.maps.event.addListener(map, 'click', function(event) {
marker = new google.maps.Marker({position: event.latLng, map: map});
alert(event.latLng);
alert(event.time_zone);
var contentString = 'test';
var infowindow = new google.maps.InfoWindow({content: contentString});
infowindow.open(map,marker);
});