使用Google地图,打开图层和KML文件创建多边形

时间:2013-05-06 14:39:24

标签: google-maps openlayers kml polygon

我正在尝试使用OpenLayers Timeline开源JavaScript库制作带时间线的谷歌地图。 (stackoverflow不允许我放3个链接,所以只是google“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地图库(watch here)时,多边形会很棒。 但是当我使用上面提到的OpenLayers时间线时,只有红点出现(watch here)。

请有人告诉我它为什么会发生?

0 个答案:

没有答案