Hey,

Been looking around for a couple of hours, i'm trying to find a way to loop 
my kml data overlay....

I'm pulling data from the NWS (radar loops) and it plays once, then 
stops....Cant seem to find any information on controls...I'd like to get it 
to indefinitely loop. 

function initialize() {
  var chicago = new google.maps.LatLng(39.715, -96.106);
  var myOptions = {
    zoom: 11,
    center: chicago,
    mapTypeId: google.maps.MapTypeId.ROADMAP
  }

  var map = new google.maps.Map(document.getElementById("map_canvas"), 
myOptions);

  var ctaLayer = new 
google.maps.KmlLayer('http://www.srh.noaa.gov/ridge/kml/animation/N0R/SGF_N0R_loop.kml');
  ctaLayer.setMap(map);
}
</script>
</head>
<html>
<body onload="initialize()">

<div id="map_canvas" style="width:550px; height:600px; float:left"></div>


Any help would be appreciated.

-- 
You received this message because you are subscribed to the Google Groups 
"Google Maps JavaScript API v3" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-maps-js-api-v3/-/vgstfgVlokMJ.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/google-maps-js-api-v3?hl=en.

Reply via email to