Simple KML file – draw line according to position and add two pins START/STOP

Here is simple sample: <?xml version="1.0" encoding="UTF-8"?> <kml xmlns="http://www.opengis.net/kml/2.2" xmlns:gx="http://www.google.com/kml/ext/2.2" xmlns:kml="http://www.opengis.net/kml/2.2" xmlns:atom="http://www.w3.org/2005/Atom"> <Document> <name>PathDemo2.kml</name> <Style id="draw_line_style"> <LineStyle> <color>7f00ff00</color> <width>3</width> </LineStyle> </Style> <Placemark> <name>RoadDemo</name> <styleUrl>#draw_line_style</styleUrl> <LineString> <coordinates> 20.82081882275383,52.16265118965216,0 20.82080165456582,52.1626334883289,0 ...more here…