【问题标题】:remove the dat tag from a track on google earth从谷歌地球上的轨道中删除 dat 标签
【发布时间】:2015-05-29 02:44:14
【问题描述】:

我编写了一个用于在 Google 地球上显示轨道的 kml 文件。该曲目显示了 Google 地球上的无线电波。在谷歌地球上的每一个轨道上都有一个固定的标签,比如:“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>

【问题讨论】:

    标签: kml google-earth


    【解决方案1】:

    如果你保持轨道名称为空,这个常量部分将消失,默认名称在轨道块中是这样的:

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

    你可以保持这个空,就像这样:

    <name></name>
    

    没有伤害。 ;)

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2013-04-10
      相关资源
      最近更新 更多