Advertisement
Guest User

Untitled

a guest
Mar 27th, 2017
39
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.15 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <kml xmlns="http://www.opengis.net/kml/2.2"
  3. xmlns:atom="http://www.w3.org/2005/Atom"
  4. xmlns:gx="http://www.google.com/kml/ext/2.2"
  5. xmlns:kml="http://www.opengis.net/kml/2.2" >
  6. <Document>
  7. <name>topeka test 2</name>
  8. <description>Linear feature, in-file style</description>
  9.  
  10. <Style id="road_big">
  11. <LineStyle>
  12. <color>ff00ffff</color>
  13. <gx:physicalWidth>50</gx:physicalWidth>
  14. <gx:outerWidth>0.25</gx:outerWidth>
  15. <gx:outerColor>88000000</gx:outerColor>
  16. </LineStyle>
  17. </Style>
  18.  
  19. <Placemark>
  20. <name>road #1</name>
  21. <styleUrl>#road_big</styleUrl>
  22. <LineString>
  23. <coordinates>
  24. -95.706132,39.036977,0.0
  25. -95.706219,39.029695,0.0
  26. -95.696957,39.029696,0.0
  27. -95.696851,39.036896,0.0
  28. </coordinates>
  29. </LineString>
  30. </Placemark>
  31.  
  32. </Document>
  33. </kml>
  34.  
  35. <?xml version="1.0" encoding="UTF-8"?>
  36. <kml xmlns="http://www.opengis.net/kml/2.2"
  37. xmlns:atom="http://www.w3.org/2005/Atom"
  38. xmlns:gx="http://www.google.com/kml/ext/2.2"
  39. xmlns:kml="http://www.opengis.net/kml/2.2" >
  40. <Document>
  41. <name>topeka test 3</name>
  42. <description>Linear feature, external style</description>
  43.  
  44. <Placemark>
  45. <name>road #1</name>
  46. <styleUrl>topeka_styles.kml#road_big_external</styleUrl>
  47. <LineString>
  48. <coordinates>
  49. -95.706132,39.036977,0.0
  50. -95.706219,39.029695,0.0
  51. -95.696957,39.029696,0.0
  52. -95.696851,39.036896,0.0
  53. </coordinates>
  54. </LineString>
  55. </Placemark>
  56.  
  57. </Document>
  58. </kml>
  59.  
  60. <?xml version="1.0" encoding="UTF-8"?>
  61. <kml xmlns="http://www.opengis.net/kml/2.2"
  62. xmlns:atom="http://www.w3.org/2005/Atom"
  63. xmlns:gx="http://www.google.com/kml/ext/2.2"
  64. xmlns:kml="http://www.opengis.net/kml/2.2" >
  65. <Document>
  66. <name>topeka styles</name>
  67.  
  68. <Style id="road_big_external">
  69. <LineStyle>
  70. <color>ff00ff00</color>
  71. <gx:physicalWidth>50</gx:physicalWidth>
  72. <gx:outerWidth>0.25</gx:outerWidth>
  73. <gx:outerColor>88000000</gx:outerColor>
  74. </LineStyle>
  75. </Style>
  76.  
  77. </Document>
  78. </kml>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement