Google maps 使用谷歌地图、开放图层和KML文件创建多边形

Google maps 使用谷歌地图、开放图层和KML文件创建多边形,google-maps,openlayers,kml,polygon,Google Maps,Openlayers,Kml,Polygon,我正在尝试使用OpenLayers Timeline开源JavaScript库制作时间线谷歌地图。(stackoverflow不允许我放置3个链接,所以只需谷歌“openlayers timeline”) 我的KML文件如下所示: <Style id="CALPOST Results 2"> <LabelStyle> <color> FF00BEF6 </color> </LabelStyle> <LineStyle> &l

我正在尝试使用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>

FF00BEF6
00000000
1.
8000BEF6
0
1.
ffffffff
$[说明]]]>
2011-09-09T20:11:51Z
八级
#CALPOST结果2
1.
).
但是当我使用上面提到的OpenLayers时间线时,只会出现红点()

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