从 google earth 上的轨道上删除数据标签

remove the dat tag from a track on google earth

我写了一个 kml 文件来显示 Google 地球上的轨道。此曲目显示 Google 地球上的无线电波。在 Google earth 上的每个轨道中都有一个常量标签,如:“2009-08-17T23:40:29Z”,在轨道中沿着图标移动,现在我真的需要隐藏这个标签,有什么办法去做这个?这是我的代码和显示我需要删除的部分的图像。`

<?xml version="1.0" encoding="utf-8"?>
<kml xmlns="http://www.opengis.net/kml/2.2" xmlns:gx="http://www.google.com/kml/ext/2.2">
<Document>
<name>Catalina - gx:Track</name>
<LookAt>
<gx:TimeSpan>
<begin>2014-08-17T23:22:32Z</begin>
<end>2014-08-17T23:23:32Z</end>
</gx:TimeSpan>
<longitude>51.4231</longitude>
<latitude>35.6930</latitude>
<altitude>0</altitude>
<heading>0</heading>
<tilt>0</tilt>
<range>950683.078661</range>
</LookAt>



<StyleMap id="multiTrack">
<Pair>
<key>normal</key>
<styleUrl>#multiTrack_n</styleUrl>
</Pair>
<Pair>
<key>highlight</key>
<styleUrl>#multiTrack_h</styleUrl>
</Pair>
</StyleMap>
<Style id="multiTrack_n">
<IconStyle>
<Icon>
<href>https://cdn3.iconfinder.com/data/icons/wireless/512/22-512.png</href>
</Icon>
</IconStyle>
<LineStyle>
<color>99ffac59</color>
<width>6</width>
</LineStyle>
</Style>
<Style id="multiTrack_h">
<IconStyle>
<scale>1.2</scale>
<Icon>
<href></href>
</Icon>
</IconStyle>
<LineStyle>
<color>99ffac59</color>
<width>8</width>
</LineStyle>
</Style>
<Placemark>
<name>2009-08-13T17:35:24Z</name>
<styleUrl>#multiTrack</styleUrl>
<gx:Track>
<altitudeMode>absolute</altitudeMode>
<when>2009-08-17T23:22:32Z</when>
<when>2009-08-17T23:40:29Z</when>

<gx:coord>53.2203,29.2736</gx:coord>
<gx:coord>53.9667,26.5333,0</gx:coord>
</gx:Track>
</Placemark>
 <Placemark>

    <gx:balloonVisibility>1</gx:balloonVisibility>
    <Point>
      <coordinates>56.1212,36.0114,0</coordinates>
    </Point>
  </Placemark>

</Document>
</kml>

如果您将轨道名称保留为空,此常量部分将消失,轨道块中的默认名称如下所示:

<name>2009-08-13T17:35:24Z</name> 

你可以留空,就像这样:

<name></name>

没有伤害。 ;)