### Eclipse Workspace Patch 1.0
#P DrupalCVS gmap
Index: gmap.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/gmap/gmap.module,v
retrieving revision 1.101
diff -u -r1.101 gmap.module
--- gmap.module	17 Apr 2009 18:31:59 -0000	1.101
+++ gmap.module	4 Sep 2009 20:46:42 -0000
@@ -224,6 +224,12 @@
           'help' => t('Used for advanced javascript work, this will enable the <em>clickshape</em> event.'),
           'internal' => TRUE,
         ),
+        'googlebar' => array(
+          'title' => t('Enable Google Bar'),
+          'default' => FALSE,
+          'help' => t('Enable the "Google Bar" at bottom.'),
+          'previewable' => TRUE,
+        ),
       );
       break;
 
Index: js/gmap.js
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/gmap/js/gmap.js,v
retrieving revision 1.15
diff -u -r1.15 gmap.js
--- js/gmap.js	6 Apr 2009 17:15:27 -0000	1.15
+++ js/gmap.js	4 Sep 2009 20:46:43 -0000
@@ -292,6 +292,9 @@
     if (obj.vars.behavior.overview) {
       map.addControl(new GOverviewMapControl());
     }
+    if (obj.vars.behavior.googlebar) {
+        map.enableGoogleBar();
+      }    
     if (obj.vars.behavior.scale) {
       map.addControl(new GScaleControl());
     }
