Index: /oceandb/jQuery_Prototype/index.html
===================================================================
--- /oceandb/jQuery_Prototype/index.html	(revision 58)
+++ /oceandb/jQuery_Prototype/index.html	(revision 59)
@@ -3,12 +3,16 @@
 <html xmlns="http://www.w3.org/1999/xhtml">
   <head>
+    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
+    <meta http-equiv="cache-control" content="must-revalidate" />
+
     <title>台灣海洋資訊資料庫聯盟網 Taiwan Ocean Informatioan Database</title>
     <link rel="stylesheet" type="text/css" href="index.css" />
     <link rel="stylesheet" type="text/css" href="css/theme/ui.all.css" />
+    <script src="http://maps.google.com/maps?file=api&amp;v=2&amp;key=ABQIAAAAREq2HXjZzIdAyVORbKBYMhTfzQKfMm5eNRoty1ZKt0XEeQdtXxTxlSH6lZOV7UEfIym3ft5_EnXXDw" type="text/javascript"></script>
     <script src="script/jquery.js"  language="javascript"></script>
     <script src="script/jquery-ui.js"  language="javascript"></script>
     <script src="script/oceandb.js" language="javascript"></script>
   </head>
-  <body>
+  <body onload="load()" onunload="GUnload()">
     <div id="header">
       <div id="main-menu"> 
Index: /oceandb/jQuery_Prototype/script/oceandb.js
===================================================================
--- /oceandb/jQuery_Prototype/script/oceandb.js	(revision 58)
+++ /oceandb/jQuery_Prototype/script/oceandb.js	(revision 59)
@@ -14,2 +14,13 @@
   $('#map-menu').accordion({ header: "h3" });
 });
+
+function load() {
+  if (GBrowserIsCompatible()) {
+    var map = new GMap2(document.getElementById("map"));  // 取得 DOM 中,名稱為 map 的元件
+    map.addControl(new GLargeMapControl());               // 加入左上角比例尺規控制列
+    map.addControl(new GScaleControl());                  // 加入左下角比例尺狀態列
+    map.addControl(new GMapTypeControl());                // 加入右上角"地圖","衛星","混合地圖"按鈕
+    map.setCenter(new GLatLng(23.8,121), 7);              // 設定預設經緯度北緯 23.8, 東經 121, 預設比例尺 100 公里(7)
+    map.setMapType(G_SATELLITE_MAP);                      // 設定預設底圖為"衛星"
+  }
+}
