function getlocations_element_markerclusterer_size in Get Locations 7
Same name and namespace in other branches
- 6.2 getlocations.markercluster.inc \getlocations_element_markerclusterer_size()
- 6 getlocations.markercluster.inc \getlocations_element_markerclusterer_size()
- 7.2 getlocations.markercluster.inc \getlocations_element_markerclusterer_size()
1 call to getlocations_element_markerclusterer_size()
- getlocations_markercluster_form in ./getlocations.module
File
- ./getlocations.markercluster.inc, line 148
- getlocations.markercluster.inc
@author Bob Hutchinson http://drupal.org/user/52366
@copyright GNU GPL
Code
function getlocations_element_markerclusterer_size($default) {
$element = array(
'#type' => 'select',
'#title' => t('Marker Clusterer size'),
'#default_value' => $default,
'#options' => array(
'-1' => t('Default'),
'40' => '40',
'50' => '50',
'70' => '70',
'80' => '80',
),
);
return $element;
}