How to route between the marks

I am new to kml and cannot find a way to create paths between multiple labels (each with a different coordinate, name, description). I checked kml tutos but did not find this.

Any ideas?

+6
kml
source share
1 answer

create a LineString element with the same coordinates (longitude, latitude, height) as your points.

<Folder> <description>Frankie likes walking and stopping</description> <Placemark id="track1"> <name>frankies path</name> <LineString> <coordinates>-46.67,-23.58,100 -46.754,-23.666,100 -46.6616,-23.5632,100 </coordinates> </LineString> </Placemark> <Placemark> <name> 2012-05-31 17:23:09</name> <description> Stop TIME: 19:25:20 Source: network</description> <Point> <coordinates>-46.67,-23.58,100 </coordinates> </Point> </Placemark> <Placemark> <name> 2012-05-31 17:23:09</name> <description> Stop TIME: 03:01:59 Source: gps</description> <Point> <coordinates>-46.754,-23.666,100 </coordinates> </Point> </Placemark> <Placemark> <name> 2012-05-31 17:23:09</name> <description> Stop TIME: 02:26:13 Source: network</description> <Point> <coordinates>-46.6616,-23.5632,100 </coordinates> </Point> </Placemark> </Folder> 
+9
source share

All Articles