Changeset 66 for oceandb/jQuery_Prototype
- Timestamp:
- Feb 22, 2009, 5:21:06 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
oceandb/jQuery_Prototype/script/oceandb.js
r65 r66 2 2 // 參考: http://docs.jquery.com/Events 3 3 $(document).ready(function() { 4 5 // 呼叫 Google Map API 載入地圖 6 load(); 4 7 5 8 var PARENT_ID = []; // 產生一個空的陣列 … … 75 78 $('#main').css( { height: map_height } ); 76 79 }); 80 81 function load() 82 { 83 if (GBrowserIsCompatible()) { 84 var map = new GMap2(document.getElementById("map")); // 取得 DOM 中,名稱為 map 的元件 85 map.addControl(new GLargeMapControl()); // 加入左上角比例尺規控制列 86 map.addControl(new GScaleControl()); // 加入左下角比例尺狀態列 87 map.addControl(new GMapTypeControl()); // 加入右上角"地圖","衛星","混合地圖"按鈕 88 map.setCenter(new GLatLng(23.8,121), 7); // 設定預設經緯度北緯 23.8, 東經 121, 預設比例尺 100 公里(7) 89 map.setMapType(G_SATELLITE_MAP); // 設定預設底圖為"衛星" 90 } 91 }
Note: See TracChangeset
for help on using the changeset viewer.