Index: gmap_location.module
===================================================================
RCS file: /cvs/drupal/contributions/modules/gmap/gmap_location.module,v
retrieving revision 1.58
diff -u -F '^f' -r1.58 gmap_location.module
--- gmap_location.module	13 Mar 2009 17:10:45 -0000	1.58
+++ gmap_location.module	1 Nov 2010 21:18:42 -0000
@@ -681,12 +681,19 @@ function gmap_location_block_view($nid) 
           $markertitle = $loc['name'];
         }
 
+        $bubbletext = "<h3>". $loc['name'] ."</h3><p>".
+          $loc['street'] ."<br />".
+          $loc['city'] .", ". 
+          $loc['province'] ." ". 
+          $loc['postal_code'] ."</p>";
+                  
         $markers[] = array(
           'latitude' => $loc['latitude'],
           'longitude' => $loc['longitude'],
           'markername' => $markername,
           'offset' => $count-1,
           'opts' => array('title' => $markertitle),
+          'text' => $bubbletext, 
         );
       }
     }
