You are here

function _gmap_location_node_map_defaults in GMap Module 7.2

Same name and namespace in other branches
  1. 5 gmap_location.module \_gmap_location_node_map_defaults()
  2. 6.2 gmap_location.module \_gmap_location_node_map_defaults()
  3. 6 gmap_location.module \_gmap_location_node_map_defaults()
  4. 7 gmap_location.module \_gmap_location_node_map_defaults()

Get the node map variable defaults.

2 calls to _gmap_location_node_map_defaults()
gmap_location_admin_settings in ./gmap_location.module
Admin Settings Page.
gmap_location_node_page in ./gmap_location.module
Draws a page with a google map with the node on it.

File

./gmap_location.module, line 83
GMap Location module is a module to add some gmap funcationality based on location.modules information.

Code

function _gmap_location_node_map_defaults() {
  return array(
    'macro' => '[gmap |id=nodemap|center=40,0|zoom=3|width=100%|height=400px]',
    'header' => 'This map illustrates the locations of the nodes on this website. Each marker indicates a node associated with a specific location.',
    'footer' => '',
    'markermode' => 1,
  );
}