2012-08-02 51 views
0

我通過KML文件傳遞我的數據集到谷歌地圖。在KML文件的說明中,我爲每個KML展示位置添加了一個鏈接,如*「< a href =」www.whatever.com「target =」_ blank >「*當我在Google Maps中查看我的地標時,我意識到它。改變了我的目標屬性爲 'TARGET = _blank'谷歌地圖重寫我的鏈接傳遞給它在一個KML文件

是否有surpress或避免我的URL重寫的可能性屬性

這裏我的KML文件:

<kml xmlns="http://www.opengis.net/kml/2.2"> 
    <Document> 
     <name>Notarsuche Mobil</name> 
     <Placemark> 
      <name>Street 30, 1000 Some City</name> 
      <description> Steve's Place &lt;a target='_self' href='http://www.steveshome.com' &gt; details &lt;/a&gt; &lt;br /&gt; 
      </description> 

       <Style id="normalPlacemark"> 
        <IconStyle> 
         <Icon> 
          <href>http://www.linktoanicon.com</href> 
         </Icon> 
        </IconStyle> 
       </Style> 

       <Point> 
        <coordinates>12.91588070, 46.19427120</coordinates> 
       </Point> 

      </Placemark> 
     </Document> 
    </kml> 

回答

1

它指出:

KML Element | Supported in Google Maps? | Comment 
<description> | yes      | HTML content is allowed but is sanitized to protect from cross-browser attacks; entity replacements of the form $[dataName] are unsupported. 

由邁克·威廉姆斯的說明請參閱從谷歌地圖API V2組this message