1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta name="viewport" content="initial-scale=1.0, user-scalable=no" />
  5. <meta http-equiv="content-type" content="text/html; charset=UTF-8"/>
  6. <title>Google Maps JavaScript API v3 Example: KmlLayer KML</title>
  7. <link href="http://code.google.com/apis/maps/documentation/javascript/examples/default.css" rel="stylesheet" type="text/css" />
  8. <script type="text/javascript" src="http://maps.google.com/maps/api/js?sensor=false"></script>
  9. <script type="text/javascript">
  10. function initialize() {
  11.   var chicago = new google.maps.LatLng(22.762836,120.376044);
  12.   var myOptions = {
  13.     zoom: 11,
  14.     center: chicago,
  15.     mapTypeId: google.maps.MapTypeId.HYBRID 
  16.   }
  17.   var map = new google.maps.Map(document.getElementById("map_canvas"), myOptions);
  18.   var ctaLayer = new google.maps.KmlLayer('http://ABC/location.kml');
  19.   ctaLayer.setMap(map);
  20. }
  21. </script>
  22. </head>
  23. <body onLoad="initialize()">
  24.   <div id="map_canvas"></div>
  25. </body>
  26. </html>

在第19行(' ')內加入KML連結網址(不可使用虛擬IP,要可外連的位址)

執行結果

小猴子 發表在 痞客邦 留言(0) 人氣()

首先要解壓縮,指令如下:
#sudo tar -zxvf 檔名.tar.gz

小猴子 發表在 痞客邦 留言(0) 人氣()

先求數的公約數
然後把公約數與餘數相乘
     18    6
     --------
2    9    3
     --------
3   3    1


他的最小公倍數就是:  2 × 3 × 3 × 1 = 18

也有三個數的 公式一樣  只要有2個數有公约數就繼續除
而没有公約數的就直接放下去
例如  
         18   24   12
        -------------- 
 2       9   12    6
        --------------
 2       9    6    3  
        --------------
 3      3    2    1 

他的最小公倍數就是;  2 × 2 × 3 × 3 × 2 × 1 = 72 

(more)


小猴子 發表在 痞客邦 留言(0) 人氣()

   4巴菲特定律一:在其他人都投了資的地方去投資,你是不會發財的...PAGE_16
 5巴菲特定律二:如果你面對的是一條河,那麼,就先讓自己變成一條船PAGE_22
 6巴菲特定律三:能把冬天的冰淇淋賣出去,就不會害怕夏天時的競爭了PAGE_27

小猴子 發表在 痞客邦 留言(0) 人氣()

閱讀: 
英國《經濟學人》   http://www.economist.com
紐約時報    http://www.nytimes.com

小猴子 發表在 痞客邦 留言(0) 人氣()