path.kml 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <kml xmlns="http://www.opengis.net/kml/2.2">
  3. <Document>
  4. <name>Paths</name>
  5. <description>Examples of paths. Note that the tessellate tag is by default
  6. set to 0. If you want to create tessellated lines, they must be authored
  7. (or edited) directly in KML.</description>
  8. <Style id="yellowLineGreenPoly">
  9. <LineStyle>
  10. <color>7f00ffff</color>
  11. <width>4</width>
  12. </LineStyle>
  13. <PolyStyle>
  14. <color>7f00ff00</color>
  15. </PolyStyle>
  16. </Style>
  17. <Placemark>
  18. <name>Absolute Extruded</name>
  19. <description>Transparent green wall with yellow outlines</description>
  20. <styleUrl>#yellowLineGreenPoly</styleUrl>
  21. <LineString>
  22. <extrude>1</extrude>
  23. <tessellate>1</tessellate>
  24. <altitudeMode>absolute</altitudeMode>
  25. <coordinates> -112.2550785337791,36.07954952145647,2357
  26. -112.2549277039738,36.08117083492122,2357
  27. -112.2552505069063,36.08260761307279,2357
  28. -112.2564540158376,36.08395660588506,2357
  29. -112.2580238976449,36.08511401044813,2357
  30. -112.2595218489022,36.08584355239394,2357
  31. -112.2608216347552,36.08612634548589,2357
  32. -112.262073428656,36.08626019085147,2357
  33. -112.2633204928495,36.08621519860091,2357
  34. -112.2644963846444,36.08627897945274,2357
  35. -112.2656969554589,36.08649599090644,2357
  36. </coordinates>
  37. </LineString>
  38. </Placemark>
  39. </Document>
  40. </kml>