You are here

function theme_locationmap_map in Location Map 7

Same name and namespace in other branches
  1. 8.2 locationmap.module \theme_locationmap_map()
  2. 7.2 locationmap.module \theme_locationmap_map()

Format div for display Google Maps in it.

1 theme call to theme_locationmap_map()
locationmap_page in ./locationmap.module
Menu callback; generate a page with Google Maps.

File

./locationmap.module, line 445

Code

function theme_locationmap_map() {
  $width = variable_get('locationmap_width', '500') . 'px';
  $height = variable_get('locationmap_height', '500') . 'px';
  return '<div id="locationmap_map" style="width: ' . $width . '; height: ' . $height . '"></div>';
}