Although I tried to use an existent valid KML file to make my own one, I can't get it display in GE. Here is the code (only one coordinate shown here, 214084 of them in the original file):
<?xml version="1.0" encoding="UTF-8"?>
<kml xmlns="http://earth.google.com/kml/2.2">
<Document>
<name>New</name>
<description><![CDATA[]]></description>
<Style id="style1">
<LineStyle>
<color>7F0000FF</color>
<width>5</width>
</LineStyle>
</Style>
<Placemark>
<name>Line1</name>
<styleUrl>#style1</styleUrl>
<LineString>
<tessellate>1</tessellate>
<coordinates>
2.550044453,49.01044277,0.000000
(...)
</coordinates>
</LineString>
</Placemark>
</Document>
</kml>
Note that the path exists and seems to be well read by GE, but it just doesn't display on the map. Strange behaviour...
How could I make it work?
Thanks.
Regards