1

我正在尝试使用 OpenLayers Timeline 开源 JavaScript 库制作时间线谷歌地图。(stackoverflow 不允许我放 3 个链接,所以只需谷歌“openlayers-timeline”)

我的 KML 文件如下所示:

<Style id="CALPOST Results 2">
<LabelStyle>
<color>
FF00BEF6
</color>
</LabelStyle>
<LineStyle>
<color>
00000000
</color>
<width>
1
</width>
</LineStyle>
<PolyStyle>
<color>
8000BEF6
</color>
<outline>
0
</outline>
<fill>1</fill>
</PolyStyle>
<BalloonStyle>
<bgColor>
ffffffff
</bgColor>
<text>
<![CDATA[<font size="+1" color="#000000">$[description]</font>]]>
</text>
</BalloonStyle>
</Style>
<Placemark>
<TimeStamp>
    <when>2011-09-09T20:11:51Z</when>
</TimeStamp>
<name>
Level 8
</name>
<Snippet maxLines="0">
</Snippet>
<styleUrl>
#CALPOST Results 2
</styleUrl>
<Polygon>
<tessellate>
1
</tessellate>
<altitudeMode>
clampToGround
</altitudeMode>
<outerBoundaryIs>
<LinearRing>
<coordinates>
35.0698518412794,32.7952102397171,0
35.0698576233107,32.7956876519707,0
..................................
</coordinates>
</LinearRing>
</innerBoundaryIs>
</Polygon>
</Placemark>

(我已经删除了一些坐标和其他元素,以使帖子更具可读性)当我将多边形加载到清理 Google 地图库时,它看起来很棒(在此处观看)。但是,当我使用上面提到的 OpenLayers 时间线时,只会出现红点(在此处观看)。

请有人能告诉我为什么会这样吗?

4

0 回答 0