I need to enter coordinates from a c++ file to a KML file to run with Google Earth, how would you go about doing this? The KML file is:
<?xml version="1.0" encoding="UTF-8"?>
<kml xmlns="http://www.opengis.net/kml/2.2"
xmlns:gx="http://www.google.com/kml/ext/2.2"
xmlns:kml="http://www.opengis.net/kml/2.2"
xmlns:atom="http://www.w3.org/2005/Atom">
<Document>
<name>Path.kml</name>
<Style id="pathstyle">
<LineStyle>
<color>ff190cff</color>
<width>2</width>
</LineStyle>
</Style>
<Placemark>
<name>Path</name>
<description>This is the path between the 2 points</description>
<styleUrl>#pathstyle</styleUrl>
<LineString>
<tessellate>1</tessellate>
<coordinates>
long1,lat1,0
long2,lat2,0
</coordinates>
</LineString>
</Placemark>
How would I enter the data from the c++ file when the latitudes and longitudes are entered into it? They are declared as double floats
Here is a strategy that I have used with success: create a series of functions to build up your KML/XML incrementally. For instance, here is a function to serialize the
Placemark
portion of your KML:(Also see the live demo.)
And here's how to create/open your KML file and to write to it: