跳到主要內容區塊
  • 第21屆電子學位論文國際學術研討會(ETD 2018 Taiwan)首頁大圖

交通資訊

:::
字級:
小字級
中字級
大字級
:::

國家圖書館總館

 

● 地址及連絡電話

 地 址:臺北市中山南路20號

 服務專線:(02) 2361-9132

 

● 停車服務  

   本館設有地下停車場,一般讀者皆可停放,以下各時段(4小時)的收費均為NT$50;二小時以下,採半價彈性收費,超過二小時,以單一時段計費。
   
   三段式(星期二 至 星期六):
      09:00 - 13:00
      13:00 - 17:00
      17:00 - 20:50

   二段式(週日):
      09:00 - 13:00
      13:00 - 17:00

   ※ 收費如有調整,僅在本網站公告,不另行通知。
   ※ 因本館停車位有限,如果已無停車位,建議利用國立中正文化中心地下停車場 (地址:臺北市中正區中山南路21-1號,電話:02-3393-9888)。

 

● 交通資訊

   捷運:淡水/北投 – 象山線 (2號紅線) 中正紀念堂─ 6號出口(國家圖書館)
  
   聯營公車站:

   A. 捷運中正紀念堂站 (公車 3、18、227、648、849、中山幹線)

   B. 景福門站 (公車 15、208)

   C. 一女中站 (公車 18、204、227、235、236、241、251、295、5、604、630、648、662、663、849、中山幹線)  

 

● 地圖

{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}

 
TOP