0

第一次在 StackOverflow 上发帖,所以如果我做错了什么,请告诉我并保持粗鲁。我最近使用 maps.google.com 创建了一个 KML 文件,并将 kml 上传到我的网站,我正在尝试实施我们创建的谷歌地图,但我很困惑,因为我没有错误,但它没有显示在全部。

// North Campus SHuttle KML implementation
var redShuttle = new google.maps.KmlLayer (
     'http://blazelist.org/maps/test/RedShuttle.kml'
     );
redShuttle.setMap(map);
4

1 回答 1

1

Can you share more code?

In my example your code is working:

function initialize()
{
    var map = new google.maps.Map(document.getElementById("map"),
    {
        center: new google.maps.LatLng(22.7964,73.8456),
        mapTypeId: google.maps.MapTypeId.TERRAIN
    });
  /*  var kmlLayer = new google.maps.KmlLayer('http://blazelist.org/maps/test/RedShuttle.kml',
    {
        suppressInfoWindows: true,
        map: map
    });
    */
    var redShuttle = new google.maps.KmlLayer ( 'http://blazelist.org/maps/test/RedShuttle.kml' ); redShuttle.setMap(map);
}

http://jsfiddle.net/iambnz/WbzpS/

于 2013-07-21T19:07:56.007 回答