我非常擅长使用animated update
谷歌地球的功能,并且正在使用它来移动models
。我真正想做的是能够line
在谷歌地球中为一个(例如上下)设置动画,但我发现这很棘手。
我在开始时有这条线的经度和纬度。例如线坐标是:
-88,17,100 -88.20270841086835,17.21899813162266,100
然后我想在raise
5 秒内将这条线的一端上升到 500 的高度。
我已经使用LineString
:
<Placemark id="path1">
<name>Untitled Path man</name>
<LineString>
<tessellate>1</tessellate>
<coordinates>
-88.,17,100 -88.20270841086835,17.21899813162266,100
</coordinates>
</LineString>
</Placemark>
但是我现在不知道如何使用<gx:AnimatedUpdate>
将一端从 100 移动到 500。
我确定这很容易 - 有人能指出我正确的方向吗?