我正在玩KML一點。 我正在創建一個單擊時顯示圖像的地標。當我右鍵點擊圖片時,有一個選項可以打開它,但Google地球無法打開圖片。有沒有辦法讓Google Earth打開它? KML使用圖像的相對路徑,在氣球中以這種方式顯示圖像沒有問題,但是當我單擊「打開圖像」選項時,它無法打開。 如果有人有任何幫助,我會很感激。 謝謝!KML打開圖片,谷歌地球
<?xml version="1.0" encoding="UTF-8"?>
<kml xmlns="http://www.opengis.net/kml/2.2" xmlns:gx="http://www.google.com/kml/ext/2.2" xmlns:kml="http://www.opengis.net/kml/2.2" xmlns:atom="http://www.w3.org/2005/Atom">
<Document>
<name>Photos.kml</name>
<Folder>
<name>Photos</name>
<Style id="Photo">
<IconStyle>
<Icon>
<href>http://www.google.com/mapfiles/arrow.png</href>
</Icon>
<scale>.7</scale>
</IconStyle>
</Style>
<Placemark>
<name>IMG_0988.JPG</name>
<description><![CDATA[<div align="center"><table width="500"><tr><td colspan="2"><center><img src="pics/IMG_0988.jpg" width="500" height="373"></td></tr></table></div>]]></description>
<styleUrl>#Photo</styleUrl>
<Point>
<coordinates>13.18733333,60.66783333000001,0</coordinates>
</Point>
<Style>
<IconStyle>
<heading>90</heading>
</IconStyle>
</Style>
</Placemark>
</Folder>
</Document>
</kml>
您是否嘗試製作KMZ文件並將圖像作爲KMZ文件的一部分添加到適當的子文件夾中?另外,對谷歌地球沒什麼影響,但是在HTML中有一個
謝謝!一定錯過了。 – larsk