프리미어 코너 트윈룸(35-37층) , 숙소 시나가와 프린스호텔 (2024)

}} * * 321333: The Prince Gallery Tokyo Kioicho. * 321172: Tokyo Prince Hotel. */ var hotel_check_in_min_date_data = { 321537: {'check_in_min_date': null, 'min_los': '1', 'check_in_offset': '14'}, 322033: {'check_in_min_date': '2022-04-12', 'min_los': '1', 'check_in_offset': '0'}, } var hdnHotelID = jQuery('#hdnHotelID').val(); if (hdnHotelID in hotel_check_in_min_date_data) { check_in_min_date = hotel_check_in_min_date_data[hdnHotelID]['check_in_min_date']; min_los = hotel_check_in_min_date_data[hdnHotelID]['min_los']; check_in_offset = hotel_check_in_min_date_data[hdnHotelID]['check_in_offset']; } if (null != check_in_min_date) { check_in_min_date_parts = check_in_min_date.split('-'); default_check_in_min_date = new Date(check_in_min_date_parts[0], (check_in_min_date_parts[1] - 1), check_in_min_date_parts[2]); default_check_out_min_date = new Date( check_in_min_date_parts[0], (check_in_min_date_parts[1] - 1), (parseInt(check_in_min_date_parts[2]) + 1) ); } if (null != check_in_offset) { default_check_in_min_date = new Date(default_check_in_min_date); default_check_in_min_date.setDate(default_check_in_min_date.getDate() + parseInt(check_in_offset)); } else { default_check_in_min_date = new Date(default_check_in_min_date); default_check_in_min_date.setDate(default_check_in_min_date.getDate() + 0); } // If check-in date including offset, is past now. then initial default check-in min. date will be applied. default_check_in_min_date_sys_format = default_check_in_min_date.getFullYear() + '-' + ("0" + (default_check_in_min_date.getMonth() + 1)).slice(-2) + '-' + ("0" + default_check_in_min_date.getDate()).slice(-2); current_date = "2024-06-07"; if (default_check_in_min_date_sys_format < current_date) { default_check_in_min_date = today_date; } if (null != min_los) { default_check_out_min_date = new Date(default_check_in_min_date); default_check_out_min_date.setDate(default_check_out_min_date.getDate() + parseInt(min_los)); } else { default_check_out_min_date = new Date(default_check_in_min_date); default_check_out_min_date.setDate(default_check_out_min_date.getDate() + 1); } console.log(default_check_out_min_date);jQuery('#datepickerchechinT').datepicker('setDate', default_check_in_min_date); // jQuery('#datepickerchechinT').datepicker('option', 'minDate', default_check_in_min_date); jQuery('#datepickerchechoutT').datepicker('setDate', default_check_out_min_date); // jQuery('#datepickerchechoutT').datepicker('option', 'minDate', default_check_out_min_date); } jQuery(function($) { var sd = new Date(); sd.setDate(sd.getDate() + 1); var currentDate = new Date(); currentDate.setDate(currentDate.getDate()); var today = new Date(); var dd = today.getDate(); var mm = today.getMonth() + 1; var yyyy = today.getFullYear(); var months = ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"]; document.getElementById("datepickerchechinT").value = dd + ' ' + months[today.getMonth()] + ' ' + yyyy; document.getElementById("datepickerchechin").value = dd + '/' + mm + '/' + yyyy; var tomorrow = new Date(); var dd = tomorrow.getDate() + 1; var mm = tomorrow.getMonth() + 1; var yyyy = today.getFullYear(); // document.getElementById("datepickerchechoutT").value = dd + ' ' + months[tomorrow.getMonth()] + ' ' + yyyy; // document.getElementById("datepickerchechout").value = dd + '/' + mm + '/' + yyyy; $('#datepickerchechinT').datepicker({ onSelect: function(dateStr) { var d = $.datepicker.parseDate('d M yy', dateStr); var minAfterSelect = new Date(d.getTime()); minAfterSelect.setDate(minAfterSelect.getDate() + 1); d.setDate(d.getDate() + 1); // Add three days $('#datepickerchechoutT').datepicker('option', 'minDate', minAfterSelect); $('#datepickerchechoutT').datepicker('setDate', d); setTimeout(function() { $("#datepickerchechoutT").datepicker('show'); }, 16); }, altField: '#datepickerchechin', altFormat: 'yy-mm-dd', dateFormat: 'dd M yy', buttonText: 'Select Check In Date', buttonImage: 'ASSETS_PATH/images/Calendaricon.png', //minDate: 0, minDate: new Date(), maxDate: '+12M', beforeShow: function(input, inst) { var calendar = inst.dpDiv; if ($(window).width() >= 800) { setTimeout(function() { calendar.position({ my: 'left bottom', at: 'left top', collision: 'none', of: input }); }, 1); } else { setTimeout(function() { calendar.position({ my: 'left top', at: 'left bottom', collision: 'none', of: input }); }, 1); } } }); $('#datepickerchechoutT').datepicker({ altField: '#datepickerchechout', altFormat: 'yy-mm-dd', dateFormat: 'dd M yy', buttonText: 'Select Check Out Date', buttonImage: '/images/Calendaricon.png', //minDate: 0, minDate: new Date(), maxDate: '+12M', beforeShow: function(input, inst) { var calendar = inst.dpDiv; if ($(window).width() >= 800) { setTimeout(function() { calendar.position({ my: 'left bottom', at: 'left top', collision: 'none', of: input }); }, 1); } else { setTimeout(function() { calendar.position({ my: 'right top', at: 'right bottom', collision: 'none', of: input }); }, 1); } } });// Set default calendar minDate. set_calendar_min_date(); $(".menu_cancel_link > li > a").each(function() { $(this).attr('target', '_blank'); }); }); set_calendar_min_date(); jQuery('#region_hotel').change(function() { var region = $(this).val(); var pos = region.search("_") //alert(pos); if (pos == -1) { $('#BookingEnginePromoCodeField').hide(); } else { $('#BookingEnginePromoCodeField').show(); } }); jQuery("#searchsubmit_widget").click(function() { var startDate = $('#datepickerchechin').val(); var endDate = $('#datepickerchechout').val(); if (startDate == "") { alert("Check In date should not be blank. "); return false; } if (startDate == "") { alert("Check Out date should not be blank. "); return false; } });jQuery( document ).ready(function() {set_calendar_min_date();});function includes_ie11(container, value) { var returnValue = false; var pos = container.indexOf(value); if (pos >= 0) { returnValue = true; } return returnValue;}function submitBookingForm(){ document.getElementById("err_msg").style.display="none"; var action = "https://bookings.princehotels.com/ko/reservation/hoteldetails/"; var hdnHotelID = jQuery('#hdnHotelID').val(); if(hdnHotelID){ if(includes_ie11(hdnHotelID,"_")){ var action = "https://bookings.princehotels.com/ko/reservation/hoteldetails/"; }else{ var action = "https://bookings.princehotels.com/ko/reservation/roomdetails/"; } document.getElementById("reservation_search").action = action; // alert(' submit '+document.getElementById("reservation_search").action); return true; } else{ document.getElementById("err_msg").style.display="block"; return false; }}

|

Manage Booking (made before 25th Apr 2024) Manage Booking (made before 25th Apr 2024) Manage Booking (made before 25th Apr 2024) Manage Booking (made before 25th Apr 2024)

시나가와 프린스 호텔 · 메인 타워 프리미어 플로어

다크 브라운 가구와 어두운 색상의 카펫이 있는 시크하고 차분한 디자인의 객실입니다. 넓은 양면창을 통해 조망을 즐길 수 있다.

정보

더 찾아 봐

장소 : 35층 ~ 37층
객실 크기 : 285.2 sq. ft. (26.5 sq. m.)
침대 : 침대 2개 (L 1,950 × W 1,100mm) 소파 베드 (L 1,870 × W 950mm)
최대 3명

메모들
*체크인 : 오후 3시 / 체크아웃 : 오전 11시.
*초고속인터넷(유선랜, 와이파이) 무료 이용 가능.
*반려동물은 저희 호텔에 출입할 수 없습니다.
*금연방도 있습니다.
*우리 방의 이미지는 참고용으로만 제공됩니다.

어메니티

  • 목욕타올, 페이스타올, 워시타올
  • 일회용바디수건
  • 목욕매트
  • 샴푸, 컨디셔너, 바디 비누
  • 손비누
  • 나이트웨어
  • 칫솔
  • 면도기
  • 헤어브러쉬
  • 생수(PET병)

객실 설비

  • LCD TV
  • 가습 공기 청정기
  • 헤어드라이기
  • 아이론
  • 휴대폰 충전기
  • 금고
  • 찻잔
  • 얼음통
  • 유리컵
  • 머그컵
  • 냉장고(빈칸이므로 직접 지참하시기 바랍니다)
  • 전기주전자
  • 커피 머신
  • 옷걸이
  • 면 슬리퍼
  • 구두닦이 종이
  • 구둣주걱
  • 수트브러쉬
  • 데오도란트
  • 어댑터 (해외용) (※2핀: 1종, 3핀: 1종)
  • LAN 케이블
  • 연장코드

다른객실

프리미어 더블룸(35-37층)

메인 타워-트윈 룸 (28~34층)

메인 타워-트윈 룸 (17~27층)

메인 타워-코너 트윈 (6~16층)

We use our own and third party cookies to give you the best possible experience. By using this site, you agree with our Cookie PolicyAccept

프리미어 코너 트윈룸(35-37층) , 숙소 시나가와 프린스호텔 (2024)

References

Top Articles
Latest Posts
Article information

Author: Domingo Moore

Last Updated:

Views: 6535

Rating: 4.2 / 5 (53 voted)

Reviews: 92% of readers found this page helpful

Author information

Name: Domingo Moore

Birthday: 1997-05-20

Address: 6485 Kohler Route, Antonioton, VT 77375-0299

Phone: +3213869077934

Job: Sales Analyst

Hobby: Kayaking, Roller skating, Cabaret, Rugby, Homebrewing, Creative writing, amateur radio

Introduction: My name is Domingo Moore, I am a attractive, gorgeous, funny, jolly, spotless, nice, fantastic person who loves writing and wants to share my knowledge and understanding with you.