KML を少しいじっています。クリックすると画像が表示される目印を作成しています。画像を右クリックすると、画像を開くオプションがありますが、Google Earth で画像を開くことができません。Google Earth で開く方法はありますか? 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>