How would I create a KML text file for Google Earth GPS POIs?
Is there a clever way of doing this or do I simply save text strings to create it?
Has anyone tried it and if so what code did they use?
A typical KML file looks like this in a simple text file...
<?xml version="1.0" encoding="utf-8"?>
<kml xmlns="http://earth.google.com/kml/2.2">
<Folder>
<name>London Landmarks</name>
<open>1</open>
<Placemark>
<name>House of Commons</name>
<description></description>
<Point>
<coordinates>0.17810782,1.35190495,0</coordinates>
</Point>
</Placemark>
<Placemark>
</Folder>
</kml>
Is there a clever way of doing this or do I simply save text strings to create it?
Has anyone tried it and if so what code did they use?
A typical KML file looks like this in a simple text file...
<?xml version="1.0" encoding="utf-8"?>
<kml xmlns="http://earth.google.com/kml/2.2">
<Folder>
<name>London Landmarks</name>
<open>1</open>
<Placemark>
<name>House of Commons</name>
<description></description>
<Point>
<coordinates>0.17810782,1.35190495,0</coordinates>
</Point>
</Placemark>
<Placemark>
</Folder>
</kml>