Re,
I am reading the google maps API and can overlay the exported track on my sample map but I can't figure out how to get rid of all "markers". The exported track from BT747 looks like this:
<Placemark>
<name>TIME: 07:25:05</name>
<visibility>0</visibility>
<description>HTML data.......
</description>
<TimeStamp><when>2010-06-06T07:25:05.000Z</when></TimeStamp>
<styleUrl>#StyleD</styleUrl>
<Point>
<coordinates>-75.XXX,45.XXX</coordinates></Point>
</Placemark>
Basically, I want just the "point" part. I can parse it in Javascript but perhaps there's an easier way? Otherwise my KML track looks something like this:
http://bit.ly/aNxeEU
Hi Just make sure that in the
Hi
Just make sure that in the Filter panel for 'Waypoint filter', you have nothing checked for 'RCR'.
Initially I thought that was
Initially I thought that was the reason myself, so I unchecked everything in the Waypoint filter but it still outputs that information.
http://bit.ly/dxkRw4
Hi I did not read the initial
Hi
I did not read the initial post carefully enough, but i did so now. I was mistaking with Google Earth.
Basically the Google Maps API does not respect the 'visibility' setting of the placemark information (that's an old grief and apparently it has not changed).
I think that you only want the linestring:
<LineString>
<extrude>1</extrude>
<tessellate>1</tessellate>
<altitudeMode>clampToGround</altitudeMode><coordinates>
2.208718,48.939774
2.208752,48.939820
2.208742,48.939748
...
You can achieve that by unselecting the 'Add Track Point Info' in the 'Output Settings' tab. You can also remove 'Add Track Point Name', but that should not be necessary.
Got it, thanks!
Got it, thanks!