如何使用本地磁盘或网络驱动器中的映像显示自定义KML地标图标

时间:2014-06-19 17:36:41

标签: icons kml google-earth

是否有人知道如何使用本地磁盘或网络驱动器中的图像显示自定义KML地标图标。

我尝试了这个并且它无法正常工作:

<?xml version="1.0" encoding="UTF-8"?>
<kml xmlns="http://www.opengis.net/kml/2.2">
<Style id="icon">
        <IconStyle>
          <Icon>
            <href>c:\etnasss.jpg</href>
          </Icon>
        </IconStyle>
 </Style>
  <Placemark>
    <name>Simple placemark</name>
    <description>Attached to the ground. Intelligently places itself 
       at the height of the underlying terrain.</description>
    <styleUrl>#icon</styleUrl>    
    <Point>
      <coordinates>-122.0822035425683,37.42228990140251,0</coordinates>
    </Point>
  </Placemark>
</kml>

由于

1 个答案:

答案 0 :(得分:8)

KML中的<href>元素采用的是URL而不是Windows文件路径。 URL可以是绝对或相对位置。

要使其正常工作,建议您先将KML文件和图像移动到同一文件夹,然后按文件名引用图像。

<Style id="icon">
    <IconStyle>
        <Icon>
          <href>etnasss.jpg</href>
        </Icon>
    </IconStyle>
</Style>

来源:https://developers.google.com/kml/documentation/kmlreference#href

接下来,您可以通过绝对位置引用图像(例如file:/// C:/etnasss.jpg),但Google地球有关于在KML上下文之外访问文件系统上的本地文件的安全策略文件。您必须允许访问通常不推荐的本地文件。

或者,您可以创建KMZ file(也称为ZIP文件)并将图像包含在KMZ存档文件中,并在KML文件中引用它。