Created
November 30, 2016 17:02
-
-
Save georgebax/b44ab3140d4cadabfe851877206a2331 to your computer and use it in GitHub Desktop.
This file contains hidden or 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://earth.google.com/kml/2.1"> | |
<Document> | |
<name>Taxi Routes</name> | |
<Style id="green"> | |
<LineStyle> | |
<color>ff009900</color> | |
<width>4</width> | |
</LineStyle> | |
</Style> | |
<Style id="red"> | |
<LineStyle> | |
<color>ff0000ff</color> | |
<width>4</width> | |
</LineStyle> | |
</Style> | |
<Placemark> | |
<name>Taxi 1</name> | |
<styleUrl>#green</styleUrl> | |
<LineString> | |
<altitudeMode>relative</altitudeMode> | |
<coordinates> | |
22.735289,38.006913,0 | |
.... | |
22.783516,37.931722,0 | |
</coordinates> | |
</LineString> | |
</Placemark> | |
<Placemark> | |
<name>Taxi 2</name> | |
<styleUrl>#red</styleUrl> | |
<LineString> | |
<altitudeMode>relative</altitudeMode> | |
<coordinates> | |
22.783516,37.931745,0 | |
... | |
</coordinates> | |
</LineString> | |
</Placemark> | |
... | |
</Document> | |
</kml> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment