Global Mapper v25.0

Unable to view HTML in balloon text

john_smith
john_smith Global Mapper User
edited December 2013 in Technical Support
I have a KML file that has an attribute stored as HTML which gets displayed on clicking the balloon (i.e. the placemarker). I verified this by opening this KML in Google Earth. However, I am unable to click on this placemarker when I open it in Global Mapper 15.

Can't I render this HTML in Global Mapper just by clicking on the placemarker (like Google Earth)?

Is it a feature not supported or my KML lacks some tags which are needed to render this HTML in Global Mapper?

The KML is as follows:
<?xml version="1.0" encoding="UTF-8"?>
<kml xmlns="http://www.opengis.net/kml/2.2"><Document&gt;
<Style id="styleNormal">
<IconStyle>
<Icon>
<href>http://maps.google.com/mapfiles/ms/icons/red-dot.png</href&gt;
</Icon>
</IconStyle>
</Style>


<Style id="styleHighlighted">
<IconStyle>
<Icon>
<href>http://maps.google.com/mapfiles/ms/icons/green-dot.png</href&gt;
</Icon>
</IconStyle>
</Style>


<Placemark>
<name><![CDATA[Test text]]></name>
<styleUrl>#styleNormal</styleUrl>
<description><![CDATA[<table width="500px" bordercolor="black"> <tr style="font-size:10px;color:#000000;font-family:Verdana;background-color:#d9e6ea;font-weight:bold;" bgcolor="#c9c9c9"> <td style="word-break:break-all;">S.No.</td> <td style="word-break:break-all;">Name</td> <td style="word-break:break-all;">Days open</td> </tr> <tr style="font-size:10px;color:#000000;font-family:Verdana;background-color:#d9e6ea;" bgcolor="#c9c9c9"> <td style="word-break:break-all;white-space:normal;" width="45%">1</td> <td style="word-break:break-all;white-space:normal;" width="20%">Test place #1</td> <td style="word-break:break-all;white-space:normal;" width="30%">M W F</td> </tr></table>]]></description>
<Point>
<coordinates>38.9,23.9</coordinates>
</Point>
</Placemark>
</Document>
</kml>

Comments