function getlocations_element_markerclusterer_zoom in Get Locations 7
Same name and namespace in other branches
- 6.2 getlocations.markercluster.inc \getlocations_element_markerclusterer_zoom()
- 6 getlocations.markercluster.inc \getlocations_element_markerclusterer_zoom()
- 7.2 getlocations.markercluster.inc \getlocations_element_markerclusterer_zoom()
1 call to getlocations_element_markerclusterer_zoom()
- getlocations_markercluster_form in ./getlocations.module
File
- ./getlocations.markercluster.inc, line 127
- getlocations.markercluster.inc
@author Bob Hutchinson http://drupal.org/user/52366
@copyright GNU GPL
Code
function getlocations_element_markerclusterer_zoom($default) {
$element = array(
'#type' => 'select',
'#title' => t('Marker Clusterer zoom'),
'#default_value' => $default,
'#options' => array(
'-1' => t('Default'),
'7' => '7',
'8' => '8',
'9' => '9',
'10' => '10',
'11' => '11',
'12' => '12',
'13' => '13',
'14' => '14',
),
);
return $element;
}