我一直在玩 Fusion Tables/Google Maps 的东西来创建不同地方之间的一些飞行路径,但我不知道如何正确设置线条的样式。
这是我导入的示例 KML:
<?xml version="1.0" encoding="UTF-8"?>
<kml xmlns="http://www.opengis.net/kml/2.2">
<Document>
<name>LineStyle.kml</name>
<open>1</open>
<Style id="linestyleExample">
<LineStyle>
<color>00FF00</color>
<width>4</width>
<gx:labelVisibility>1</gx:labelVisibility>
</LineStyle>
</Style>
<Placemark>
<name>LineStyle Example</name>
<styleUrl>#linestyleExample</styleUrl>
<LineString>
<extrude>1</extrude>
<tessellate>1</tessellate>
<coordinates>-0.47364383,51.824664,0.0 -122.364152,37.824322,0.0</coordinates>
</LineString>
</Placemark>
</Document>
</kml>
它正确地绘制了线条,但无论我在 LineStyle 部分中输入什么值,它始终是红色的。
有人知道如何获得不同的颜色吗?我已经尝试了我能想到的一切,但我被困住了!
在此先感谢,马克