Skip to content

Instantly share code, notes, and snippets.

@scotch
Created April 4, 2011 19:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save scotch/902237 to your computer and use it in GitHub Desktop.
Save scotch/902237 to your computer and use it in GitHub Desktop.
Google Fusion Tables - KML Export Test
<?xml version="1.0" encoding="UTF-8"?>
<kml xmlns="http://www.opengis.net/kml/2.2">
<Document>
<Folder id="Fusiontables">
<name>Fusiontables folder</name>
<Style id="BasicStyle">
<BalloonStyle>
<text>$[description]</text>
</BalloonStyle>
<IconStyle>
<color>FFFFFFFF</color>
<scale>1.1</scale>
<hotSpot x="0.5" y="0" xunits="fraction" yunits="fraction"/><Icon>
<href>http://maps.google.com/mapfiles/kml/paddle/red-blank_maps.png</href>
</Icon>
</IconStyle>
</Style>
<Placemark>
<name><![CDATA[White House]]></name>
<styleUrl>#BasicStyle</styleUrl>
<description>
<![CDATA[<div class="googft-info-window" style="font-family:sans-serif">
<b>Name:</b> White House<br>
<b>Location:</b> 1600 Pennsylvania Ave NW
Washington D.C., DC 20500
</div>]]>
</description>
<address>1600 Pennsylvania Ave NW
Washington D.C., DC 20500</address>
<ExtendedData>
<Data name="Name">
<value>White House</value>
</Data>
</ExtendedData>
</Placemark>
</Folder>
</Document>
</kml>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment