0

我的风格定义为:

<Style id="style1"> 
<BalloonStyle><text>$[description]</text></BalloonStyle> 
<IconStyle><Icon><href>http://maps.google.com/mapfiles/kml/paddle/red-circle-lv.png</href></Icon></IconStyle> 
</Style>

和地标描述为:

<description><![CDATA[ 
          <table width="400"><tr>
             <td><a href="img/test.png">Open Image<br><img src="img/test.png" width=200 /></a></td> 
             <td>Some Text Goes Here</td>
          </tr></table> 
]]></description>

是否有可能使当他们单击图像时,它会在默认查看器或其他浏览器页面中打开?右键单击(在新窗口中打开,打开图像,打开)似乎没有做任何事情。图像在 KMZ 文件中。

彼得

4

1 回答 1

0

彼得 - 我刚刚复制了你的设置,我看到了同样的行为。

在进行了一些测试后,似乎只有当您的链接引用 Internet 上的某些内容而不是本地文件(如您的img/test.png. 此外,您需要http://在 URL 的开头包含 。

我尝试使用<a href="www.google.com">Google</a>它并没有用。一旦我将链接更改为<a href="http://www.google.com">Google</a>,它就可以工作了。

所以我的结论是,您需要将图像托管在某处的网络服务器上,并使用完整的 URL 引用它们,以便 Google 地球自动打开网络浏览器。

于 2013-05-10T14:31:25.553 回答