Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /*
- https://developers.google.com/kml/documentation/kml_tut
- */
- <?xml version="1.0" encoding="UTF-8"?>
- <kml xmlns="http://www.opengis.net/kml/2.2">
- <Document>
- <name> Sample Document </name>
- <description>Place your mouse over the icon to see it display the new icon</description>
- <Style id="p_s_normal">
- <IconStyle>
- <scale>0.5</scale>
- <Icon><href>http://maps.google.com/mapfiles/kml/shapes/placemark_square.png</href></Icon>
- </IconStyle>
- </Style>
- <Style id="p_s_highlight">
- <IconStyle>
- <Icon><href>http://maps.google.com/mapfiles/kml/shapes/placemark_square_highlight.png</href></Icon>
- </IconStyle>
- </Style>
- <StyleMap id="p_s">
- <Pair>
- <key>normal</key>
- <styleUrl>#p_s_normal</styleUrl>
- </Pair>
- <Pair>
- <key>highlight</key>
- <styleUrl>#p_s_highlight</styleUrl>
- </Pair>
- </StyleMap>
- <Folder>
- <name> Sample Folder </name>
- <Placemark>
- <name>Sample placemark</name>
- <description>Attached to the ground. Intelligently places itself at the height of the underlying terrain.</description>
- <styleUrl>#p_s</styleUrl>
- <Point><coordinates>19.0121756114,45.9711727390,100</coordinates></Point>
- </Placemark>
- <Placemark>
- <name>Sample placemark2</name>
- <description>Attached to the ground. Intelligently places itself at the height of the underlying terrain.</description>
- <styleUrl>#p_s</styleUrl>
- <Point><coordinates>19.2121756114,45.8711727390,100</coordinates></Point>
- </Placemark>
- <Placemark>
- <name>15-3442</name>
- <styleUrl>#p_s</styleUrl>
- <Point><coordinates>19.0121756115,45.971172739,100</coordinates></Point>
- </Placemark>
- </Folder>
- </Document>
- </kml>
Add Comment
Please, Sign In to add comment