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 <a target='_self' href='http://www.steveshome.com' > details </a> <br />
</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>