On Sep 27, 9:21 am, "[email protected]" <[email protected]>
wrote:
> 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
HTTP Error 404 - File or directory not found.
Internet Information Services (IIS)
>
> and this is the kmz:
> sites.google.com/site/uknxclkml/file-cabinet/6970.kmz
Seems like more of a KML question than a google maps question.
Have you tried removing all the "Point" placemarks from your KML? The
Points create markers, the LineStrings create the polylines.
-- Larry
>
> 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.