我想增加时间滑块上的步进分辨率(缩放)。这可能吗?
在此博客中,看起来应该有可能,但我没有任何成功。 https://www.gearthblog.com/blog/archives/2016/11/animating-google-earth-part-3-time-toolbar.html
该图标已在我的Google地球专业版(v7.3.2)中启用,但单击后无任何作用。
此功能是否有问题?
我将我的数据全天作为轨道(请参阅下面的示例,第一个和最后四个点),通常是10到14个小时的轨道,大约有20,000个坐标。默认分辨率增量对我来说太粗糙了。我希望滑块移动几秒钟而不是分钟,但是要做到这一点,我需要放大时间滑块(我猜是这样)。我理解正确吗?我的KML有问题吗?还是该功能按预期工作?
如果没有,是否有人知道最好的方法是什么(即在网页中)?
(仅供参考,以下KML示例中的多余名称空间引用是我在其中生成KML的SQL Server XML查询引擎的伪像。)
<kml xmlns="http://www.opengis.net/kml/2.2" xmlns:gx="http://www.google.com/kml/ext/2.2">
<Document xmlns="http://www.opengis.net/kml/2.2" xmlns:gx="http://www.google.com/kml/ext/2.2">
<name>2018-12-14</name>
<Style xmlns="" id="Nav_n">
<IconStyle>
<scale>1.0</scale>
<Icon>
<href>http://earth.google.com/images/kml-icons/track-directional/track-0.png</href>
</Icon>
</IconStyle>
<LabelStyle>
<scale>0.0</scale>
</LabelStyle>
<LineStyle>
<color>99ff7518</color>
<width>6</width>
</LineStyle>
</Style>
<Style xmlns="" id="Nav_h">
<IconStyle>
<scale>1.2</scale>
<Icon>
<href>http://earth.google.com/images/kml-icons/track-directional/track-0.png</href>
</Icon>
</IconStyle>
<LabelStyle>
<scale>1.0</scale>
</LabelStyle>
<LineStyle>
<color>99ff7518</color>
<width>8</width>
</LineStyle>
</Style>
<StyleMap xmlns="" id="Nav">
<Pair>
<key>normal</key>
<styleUrl>#Nav_n</styleUrl>
</Pair>
<Pair>
<key>highlight</key>
<styleUrl>#Nav_h</styleUrl>
</Pair>
</StyleMap>
<Folder xmlns="http://www.opengis.net/kml/2.2" xmlns:gx="http://www.google.com/kml/ext/2.2">
<name>Tracks</name>
<Placemark xmlns="http://www.opengis.net/kml/2.2" xmlns:gx="http://www.google.com/kml/ext/2.2">
<name>Trackway</name>
<visibility>1</visibility>
<styleUrl>#Nav</styleUrl>
<gx:Track xmlns="http://www.opengis.net/kml/2.2" xmlns:gx="http://www.google.com/kml/ext/2.2">
<altitudeMode>clampToGround</altitudeMode>
<when>1970-01-01T05:01:12.000Z</when>
<when>1970-01-01T05:01:13.000Z</when>
<when>1970-01-01T05:01:14.000Z</when>
<when>1970-01-01T05:01:15.000Z</when>
<when>1970-01-01T11:15:53.000Z</when>
<when>1970-01-01T11:15:54.000Z</when>
<when>1970-01-01T11:15:55.000Z</when>
<when>1970-01-01T11:15:56.000Z</when>
<gx:coord>-9.0186943,53.332581067</gx:coord>
<gx:coord>-9.0186945,53.332581167</gx:coord>
<gx:coord>-9.0186947,53.332581167</gx:coord>
<gx:coord>-9.0186949,53.332581167</gx:coord>
<gx:coord>-9.0187306,53.332571264</gx:coord>
<gx:coord>-9.0187308,53.332571364</gx:coord>
<gx:coord>-9.0187311,53.332571464</gx:coord>
<gx:coord>-9.0187314,53.332571664</gx:coord>
<gx:angles>358.1117553 1.1040233 -0.4038500</gx:angles>
<gx:angles>358.1956070 1.1122400 -0.4070779</gx:angles>
<gx:angles>358.2655481 1.1067757 -0.4230014</gx:angles>
<gx:angles>358.3433771 1.0995849 -0.4371469</gx:angles>
<gx:angles>10.1858022 1.3030573 -0.2727468</gx:angles>
<gx:angles>10.2809598 1.2876522 -0.2880097</gx:angles>
<gx:angles>10.3998852 1.2880614 -0.2987233</gx:angles>
<gx:angles>10.5084895 1.2822637 -0.2535244</gx:angles>
</gx:Track>
</Placemark>
</Folder>
</Document>
</kml>
关于面板的全部内容...