National Central Library-Main Library
● National Central Library
Address and Contacts Address: 20 Zhung-Shan S. Rd. Taipei 10001, Taiwan (R.O.C.)
Operator: +886-2-23619132
General Information: +886-2-23619132 Ext. 231
Reference Inquiries: +886-2-23619132 Ext. 250
Fax: +886-2-23110155
Website: www.ncl.edu.tw
● Parking
Paid parking is available in an underground garage at National Central Library. Parking rate is NT$50. each following 4-hours specific time period. However, if parking is less than 2 hours, the parking rate will be only NT$25. When exceeds 2 hours, full rate for a time period (i.e, NT$50.) will be charged.
Tuesday-Saturday:
09:00 - 13:00
13:00 - 17:00
17:00 - 20:50
Sunday:
09:00 - 13:00
13:00 - 17:00
※ Parking rate is subject to change without notice. Rate changes will be announced at the NCL Website only.
※ The available parking space is quite limited in NCL underground garage. When it is full, it is suggested to use the nearby underground garage at National Theater and Concert Hall (Address: Address: No. 21-1, Zhong-Shan S Rd, Zhong-Zheng District, Taipei City, 100. Telephone: 02 3393 9888)
● Access Transportations
MRT:No. 2 Read Line, Chiang, Kai-Sheck Memorial Hall, Exit 6 (to NCL)
Buses:
A. Bus Stop: MRT Chiang, Kai-Sheck Memorial Hall
Bus No. 3、18、227、648、849、中山幹線 (Zhong-Shan Line)
B. Bus Stop: Jing-Fu-Gate Station
Bus No. 15、208
C. Bus Stop: First Girls High School Station
Bus No. 18、204、227、235、236、241、251、295、5、604、630、648、662、663、849、中山幹線 (Zhong-Shan Line)
● Map
{source}
<style type="text/css">
/* Set a size for our map container, the Google Map will take up 100% of this container */
#map {
width: 100%;
height: 500px;
}
.stepwizard { /* весь блок */
display: table;
/* ограничимся шириной .btn-square */
height: 215px; /* высота */
position: relative; margin-left:40px; }
.stepwizard-row { display: table-row; }
.stepwizard-step button[disabled] {
opacity: 1 !important;
filter: alpha(opacity=100) !important; }
.stepwizard-row:before { /* линия */
position: absolute;
top: 0px; /* если нужно довести донизу – вместо него поставь bottom:0px ;*/
content: " ";
width: 1px;
height: 70%; /* т.к. занимает 2 "ячейки" */
background-color: #ccc; }
.stepwizard-step { /* каждый из 3-ёх */
display: table-cell;
text-align: center;
position: relative; left: -15px;
z-index: 1; }
.btn-square {
width: 30px; height: 30px;
text-align: center; padding: 6px 0; font-size: 12px; line-height: 1.428571429; /* цифры внутри */ }
</style>
<script type="text/javascript" src="https://maps.googleapis.com/maps/api/js?key=AIzaSyC10dwtn1tcHIRnHEM5bDzvP2yy5c_mkUY&callback=initMap"></script>
<script type="text/javascript">
// When the window has finished loading create our google map below
google.maps.event.addDomListener(window, 'load', init);
function init() {
// Basic options for a simple Google Map
// For more options see: https://developers.google.com/maps/documentation/javascript/reference#MapOptions
var mapOptions = {
// How zoomed in you want the map to start at (always required)
zoom: 17,
// The latitude and longitude to center the map (always required)
center: new google.maps.LatLng(25.0372665,121.5163458), // New York
// How you would like to style the map.
// This is where you would paste any style found on Snazzy Maps.
styles: [{"featureType":"landscape.natural","elementType":"geometry.fill","stylers":[{"visibility":"on"},{"color":"#e0efef"}]},{"featureType":"poi","elementType":"geometry.fill","stylers":[{"visibility":"on"},{"hue":"#1900ff"},{"color":"#c0e8e8"}]},{"featureType":"road","elementType":"geometry","stylers":[{"lightness":100},{"visibility":"simplified"}]},{"featureType":"road","elementType":"labels","stylers":[{"visibility":"off"}]},{"featureType":"transit.line","elementType":"geometry","stylers":[{"visibility":"on"},{"lightness":700}]},{"featureType":"water","elementType":"all","stylers":[{"color":"#7dcdcd"}]}]
};
// Get the HTML DOM element that will contain your map
// We are using a div with id="map" seen below in the <body>
var mapElement = document.getElementById('map');
// Create the Google Map using our element and options defined above
var map = new google.maps.Map(mapElement, mapOptions);
// Let's also add a marker while we're at it
var marker = new google.maps.Marker({
position: new google.maps.LatLng(25.0372665,121.5163458),
map: map,
title: 'Snazzy!'
});
}
</script>
{/source}