Skip to content

Instantly share code, notes, and snippets.

@wf9a5m75
Created December 21, 2017 03:02
Show Gist options
  • Save wf9a5m75/da1ef03416da78c0f778523bd30edf0c to your computer and use it in GitHub Desktop.
Save wf9a5m75/da1ef03416da78c0f778523bd30edf0c to your computer and use it in GitHub Desktop.
<?xml version="1.0" encoding="utf-8"?>
<kml xmlns="http://www.opengis.net/kml/2.2">
<Document>
<Placemark>
<name>Blue</name>
<description>Should be red.</description>
<Style>
<BalloonStyle>
<bgColor>ff0000ff</bgColor>
</BalloonStyle>
</Style>
<Point>
<coordinates>-122.0,37.0</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Green</name>
<description>Should be green.</description>
<Style>
<BalloonStyle>
<bgColor>ff00ff00</bgColor>
</BalloonStyle>
</Style>
<Point>
<coordinates>-122.1,37.0</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Red</name>
<description>Should be blue.</description>
<Style>
<BalloonStyle>
<bgColor>ffff0000</bgColor>
</BalloonStyle>
</Style>
<Point>
<coordinates>-122.2,37.0</coordinates>
</Point>
</Placemark>
</Document>
</kml>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment