You can modify the layout of the "cloud" by editing the XSL (backend->components->googlemaps->configuration)
you have to use the fieldnames of the usertable with a '@' in front. I.e. use @name instead of @username to display the realname.
Here is the one I use on
www.groupjive.org
[code:1]
<xsl:«»stylesheet version="1.0" xmlns:«»xsl="
www.w3.org/1999/XSL/Transform
">
<xsl:template match="/">
<div class="infoWindow" style="white-space:nowrap;width:175px;">
<xsl:apply-templates/>
</div>
</xsl:template>
<xsl:template match="info">
<div style="float:left">
<xsl:choose>
<xsl:when test="avatar">
<img>
<xsl:choose>
<xsl:when test="substring(avatar, 1, 4) = 'gall'">
<xsl:attribute name="src">images/comprofiler/
<xsl:value-of select="avatar"/>
</xsl:attribute>
</xsl:when>
<xsl:otherwise>
<xsl:attribute name="src">images/comprofiler/tn<xsl:value-of select="avatar"/></xsl:attribute>
</xsl:otherwise>
</xsl:choose>
</img>
</xsl:when>
<xsl:otherwise>
<img>
<xsl:attribute name="src">components/com_comprofiler/plugin/language/default_language/images/tnnophoto.jpg</xsl:attribute>
</img>
</xsl:otherwise>
</xsl:choose>
</div>
<div style="float:left;padding-left:10px;">
<b>User: <xsl:value-of select="@username"/></b>
<br /><br />
<a><xsl:attribute name="href">index.php?option=com_comprofiler&task=userProfile&user=<xsl:value-of select="@userid"/></xsl:attribute>visit profile</a>
</div>
</xsl:template>
</xsl:«»stylesheet>
[/code:1]