MrZeb
MrZeb

Reputation: 1

kmlLayer not displaying google maps api

First time ever posting on StackOverflow so tell me and be crude if I am doing something terribly wrong anyway. I recently created a KML file with maps.google.com and I uploaded the kml to my site, and I am trying to implement to the google maps that we created, but I am stumped as I have no errors but it does not show at all.

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

Upvotes: 0

Views: 1058

Answers (1)

hwsw
hwsw

Reputation: 2606

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/

Upvotes: 1

Related Questions