Will a ujGooglemaps map appear in a SiteBuilder panel?
GoogleMaps
The lat and lng will draw a map with that lat/lng at the center.
If you want to draw a map with multiple items on it, you'd want to add the $profile_latitude and $profile_longitude your $_items array in the expected place (profile_googlemaps_lat and profile_googlemaps_lng).
This is untested, but you could try something like this:
{foreach $_items as $key => $val}
{$_items[$key].profile_googlemaps_lat=$profile_latitude}
{$_items[$key].profile_googlemaps_lng=$profile_longitude}
{/foreach}
{foreach $_items as $key => $val}
{$_items.$key.profile_googlemaps_lat=$profile_latitude}
{$_items.$key.profile_googlemaps_lng=$profile_longitude}
{/foreach}
Then pass the $_items array into the map parameter:
{ujGoogleMaps_map module="jrProfile" name="countywide" map=$_items height="300" width="100%" map_type="hybrid"}
updated by @ultrajam: 03/10/15 04:13:57PM