Offizieller Kommentar
Your KML file that you emailed was missing the <Document> tag at the beginning of the file and the </Document> at the end of the file.
If you add those tags as shown below it will work:
<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>
<Placemark id="#15">
<Style>
<LineStyle>
<color>ff0000ff</color>
<width>2</width>
</LineStyle>
<PolyStyle>
<color>a00000ff</color>
<fill>0</fill>
<outline>1</outline>
</PolyStyle>
</Style>
<Polygon>
<outerBoundaryIs>
<LinearRing>
<coordinates>
43.1732863665,39.8924165642,0 43.17370941,39.8919007012,0 43.1736500245,39.8914943562,0 43.1733570678,39.8910753223,0 43.1728773063,39.8906443346,0 43.1699711266,39.8908597616,0 43.1700193751,39.8925632425,0 43.1732863665,39.8924165642,0
</coordinates>
</LinearRing>
</outerBoundaryIs>
</Polygon>
</Placemark>
</Document>
</kml>
Aktionen für Kommentare