Hello,
I'm trying to create a kml-file using the xml-templater. In the kml file I want to visualize points and Lines, something like:
<Placemark>
<styleUrl>#Icon</styleUrl>
<Point>
<coordinates>{fme:get-attribute("rw_wgs84")},{fme:get-attribute("hw_wgs84")}</coordinates>
</Point>
</Placemark>
<Placemark>
<LineString><coordinates>{fme:get-attribute("_coordinates")}</coordinates></LineString>
</Placemark>
But I get an syntax error (missing comma between the Placemarks)?
What Am I doing wrong? How can I create a template for different placemarks?
Thanks for your help,
Isabell