kmlLayer没有显示google maps api

时间:2013-07-21 17:59:12

标签: google-maps google-maps-api-3 kml

第一次在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);

1 个答案:

答案 0 :(得分:1)

你能分享更多代码吗?

在我的示例中,您的代码正在运行:

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/