0
텍스트 파일에 LON/LAT/ALT 값이있는 트랙을 플로팅하고 있지만 파일을 Google 어스로 가져올 때뿐만 아니라 상승하지 않은 파일 (상승 된 파일에 포인트가 있음), 라인이 연속적이지 않고, 포인트가 마치 내가 끝내지 않는 엔드 포인트에서 계속 이어지는 것처럼 전세계에 걸쳐 나타납니다.KML 경로가 올라가지 않고 연속적이지 않고 계속됩니다. 끝점 :
누구든지 내 코드에 어떤 문제가 있는지 알려 줄 수 있습니까?
<?xml version="1.0" encoding="UTF-8"?>
<kml xmlns="http://earth.google.com/kml/2.2">
<Document>
<Style id="yellowLine">
<LineStyle>
<color>7f00ffff</color>
<width>4</width>
</LineStyle>
</Style>
<Placemark>
<name>NAME1</name>
<description>DESCRIPTION1</description>
<Point>
<coordinates>
110.433151670242, 0, 1.64E+04
</coordinates>
<altitudeMode>absolute</altitudeMode>
</Point>
</Placemark>
<Placemark>
<styleUrl>#yellowLine</styleUrl>
<LineString>
<extrude>false</extrude>
<tessellate>false</tessellate>
<altitudeMode>absolute</altitudeMode>
<coordinates>
0, 0, 1.00E-01
...
21.973572010082, 0, 1.18E+06
</coordinates>
</LineString>
</Placemark>
</Document>
</kml>