2014年5月3日

在Server的KML實體檔,如何設定IIS讓它可以正常套入Google Map中!

https://developers.google.com/maps/documentation/javascript/examples/layer-kml

以上是Google Map 套入KML的教學連結網址,但我記得我還是個菜鳥時,當我看到以下的使用方式時,以為我只要在我的網站裡放入我想套入的KML這樣它就可以像教學網站一樣,套入我想套入的KML但實際上,和我想的不一樣。
function initialize() {
  var chicago = new google.maps.LatLng(41.875696,-87.624207);
  var mapOptions = {
    zoom: 11,
    center: chicago
  }

  var map = new google.maps.Map(document.getElementById('map-canvas'), mapOptions);

  var ctaLayer = new google.maps.KmlLayer({
    url: 'http://gmaps-samples.googlecode.com/svn/trunk/ggeoxml/cta.kml'
  });
  ctaLayer.setMap(map);
}

google.maps.event.addDomListener(window, 'load', initialize);
其實,只要一個小動作,就可以讓您的實體KML檔,套入您的Google Map裡
只有在 (以Server 2003為範例)

IIS >> 您的網站 >>  內容 >>  HTTP 標頭 >> MIME 類型 >> 新增

副檔名Key入:.kml
MIME類型Key入:application/vnd.google-earth.kml+xml

讓網站的kml實體檔可以正常套入Google Map的方法
以上,試試看吧!

或許應該注意的事項:
1. 免費的Google Map一定會有一些限制,例如:大小,一天的使用流量…等等。
2. kmz也需要這樣設定。

沒有留言:

張貼留言