We closed this forum 18 June 2010. It has served us well since 2005 as the ALPHA forum did before it from 2002 to 2005. New discussions are ongoing at the new URL http://forum.processing.org. You'll need to sign up and get a new user account. We're sorry about that inconvenience, but we think it's better in the long run. The content on this forum will remain online.
IndexProgramming Questions & HelpOther Libraries › wirte XML file with proXML
Page Index Toggle Pages: 1
wirte XML file with proXML (Read 609 times)
wirte XML file with proXML
Nov 16th, 2007, 11:01am
 
hei there!

id like to work with the proxml libary! but this is my first ever experiment with it!

id like to make a xml file, that builds an kml file: here's the xml:

<?xml version="1.0" encoding="UTF-8"?>
<kml xmlns="http://earth.google.com/kml/2.1">
<Document>
<Style id="schimmel">
<IconStyle>
<Icon>
<href>http://....png</href>
</Icon>
</IconStyle>
</Style>

<Placemark>
<name>Random Placemark</name>
<styleUrl>#schimmel</styleUrl>
<Point>
<coordinates>' .$latitude . ',' . $longitude . '</coordinates>
</Point>
</Placemark>
// End XML file
</Document>
</kml>

can anybody give me e hint how to compile it????

thanks! mias
Page Index Toggle Pages: 1