Created
December 21, 2017 03:02
-
-
Save wf9a5m75/da1ef03416da78c0f778523bd30edf0c to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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