You are here

function gmap_style_bubbles_libraries_info in GMap Module 7.2

Implements hook_libraries_info().

Information for the infobubble plugin provided as part of the google maps contributed utility libraries.

Related topics

File

gmap_style_bubbles/gmap_style_bubbles.module, line 137
Adds the more options for theming the gmap popup bubble.

Code

function gmap_style_bubbles_libraries_info() {
  $libraries['infobubble'] = array(
    'name' => 'Infobubble plugin',
    'vendor url' => 'http://google-maps-utility-library-v3.googlecode.com/svn/trunk/infobubble/',
    'download url' => 'http://google-maps-utility-library-v3.googlecode.com/svn/trunk/infobubble/',
    'version' => '.8',
    'files' => array(
      'src' => array(
        'infobubble-compiled.js',
      ),
    ),
    'variants' => array(
      'minified' => array(
        'files' => array(
          'src' => array(
            'infobubble-compiled.js',
          ),
        ),
      ),
      'source' => array(
        'files' => array(
          'js' => array(
            'infobubble.js',
          ),
        ),
      ),
    ),
  );
  return $libraries;
}