gmap_markerlist.module in GMap Addons 7
Same filename and directory in other branches
Short description.
File
gmap_markerlist/gmap_markerlist.moduleView 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
Name![]() |
Description |
---|---|
gmap_markerlist_gmap | Implementation of hook_gmap(). |