You are here

gmap_markerlist.module in GMap Addons 7

Same filename and directory in other branches
  1. 6 gmap_markerlist/gmap_markerlist.module

Short description.

File

gmap_markerlist/gmap_markerlist.module
View source
<?php

/**
 * @file
 * Short description.
 */

/**
 * Implementation of hook_gmap().
 */
function gmap_markerlist_gmap($op, &$map) {
  switch ($op) {
    case 'pre_theme_map':
      drupal_add_css(drupal_get_path('module', 'gmap_markerlist') . '/gmap_markerlist.css');
      drupal_add_js(drupal_get_path('module', 'gmap_markerlist') . '/gmap_markerlist.js');
      break;
    case 'parse_macro':
      break;
  }
}

Functions

Namesort descending Description
gmap_markerlist_gmap Implementation of hook_gmap().