我想使用在此页面http://kml4earth.appspot.com/icons.html上找到的一些不错的图标。我选择了这个图标http://maps.google.com/mapfiles/kml/pal3/icon22.png 但是当我在 kml 文件中使用它并在谷歌地图(或谷歌地球)中显示这个 KML 时,它显示为双绿色三角形。
该页面上的许多图标都会发生这种情况。我能做些什么 ?
这是一个示例 KML:
<?xml version='1.0' encoding='UTF-8'?>
<kml xmlns = 'http://www.opengis.net/kml/2.2' >
<Document>
<Style id='scuola'>
<IconStyle>
<Icon>
<href>http://maps.google.com/mapfiles/kml/pal3/icon22.png</href>
</Icon>
</IconStyle>
</Style>
<Placemark>
<name>L08940P06194</name>
<description><![CDATA[Point: L08940P06194 School<br>]]></description>
<styleUrl>#scuola</styleUrl>
<Point>
<coordinates>-72.3553467, 18.5366992, 0 </coordinates>
</Point>
</Placemark>
</Document>
</kml>
谢谢大卫·雷莫蒂