Will a ujGooglemaps map appear in a SiteBuilder panel?
GoogleMaps
Ok, If the profile_googlemaps_lat and profile_googlemaps_lng are coming from the database, try adding a profile_googlemaps field to the items which have profile_googlemaps_lat and profile_googlemaps_lng. Add any text as the value (profile_googlemaps would be an address if you had used the module to add the mappable data to the profile).
OR
If you are adding to the array in your template using the {foreach $_items as $key => $val} idea (from 7 posts above this post) add a profile_googlemaps field inside that foreach loop.
{foreach $_items as $key => $val}
{$_items[$key].profile_googlemaps_lat=$profile_latitude}
{$_items[$key].profile_googlemaps_lng=$profile_longitude}
{$_items[$key].profile_googlemaps="address placeholder"}
{/foreach}