Temp

<?php
print "[gmap |id=map |center=52.214338608258196, -0.2197265625 |zoom=5 |width=600px |height=400px |control=Small |type=Map |markers=";
$result = db_query('SELECT field_google_map_location_lat,field_google_map_location_lon FROM drupal_content_type_qgroup');
while ($group = db_fetch_array($result) ) {
$lat = $group['field_google_map_location_lat'];
$lon = $group['field_google_map_location_lon'];
if ( $lat && $lon ){
print $lat;
print ',';
print $lon;
print ' + ';
}
}
print ']';
?>