I passed my dataset to Google Maps via a KML file. In the description of the KML file I added a link like *”<a href=”www.whatever.com” target=”_blank >”* to each KML Placement. When I looked at my placemarks at Google Maps I realized that it changed my target attribute to ‘target=_blank’.
Is there a possibility to surpress or avoid rewriting of my url attributes?
Here my KML file:
<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>
See
it states:
See this message from the Google Maps v2 API group for an explanation by Mike Williams.