Right, I am new to google maps and what I am trying to achieve is to overlay kmz files onto GMs to trace flights made during competitions. At the moment I have got the kmz to overlay but each point in it has a marker. I only wish for the polyline part. Is there any way to remove the markers and just leave the polylines (It is possible using maps.google search function and toggling/ untoggling but that also removes the more accurate polyline).
here is what i have so far http://eacomms.co.uk/nxcl/Mapping/test.html and this is the kmz: sites.google.com/site/uknxclkml/file-cabinet/6970.kmz function initialize() { var latlng = new google.maps.LatLng(53, 0); var myOptions = {zoom: 7,center: latlng,mapTypeId: google.maps.MapTypeId.ROADMAP}; var Map = new google.maps.Map(document.getElementById("map"),myOptions); var kmlOptions = {map: "Map"}; var URL = 'http://sites.google.com/site/uknxclkml/file-cabinet/ 6970.kmz'; var kml = new google.maps.KmlLayer(URL); kml.setMap(Map); } -- You received this message because you are subscribed to the Google Groups "Google Maps JavaScript API v3" group. 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.
