function getlocations_cloudmade_get_resolutions in Get Locations 7
Same name and namespace in other branches
- 7.2 modules/getlocations_cloudmade/getlocations_cloudmade.module \getlocations_cloudmade_get_resolutions()
2 calls to getlocations_cloudmade_get_resolutions()
- getlocations_cloudmade_get_map_layers in modules/
getlocations_cloudmade/ getlocations_cloudmade.module - @file getlocations_cloudmade.module @author Bob Hutchinson http://drupal.org/user/52366 @copyright GNU GPL
- getlocations_cloudmade_settings_form in modules/
getlocations_cloudmade/ getlocations_cloudmade.module
File
- modules/
getlocations_cloudmade/ getlocations_cloudmade.module, line 47 - getlocations_cloudmade.module @author Bob Hutchinson http://drupal.org/user/52366 @copyright GNU GPL
Code
function getlocations_cloudmade_get_resolutions() {
$output = array(
'standardResolution1' => t('Standard Resolution 1'),
'standardResolution2' => t('Standard Resolution 2'),
'standardResolution3' => t('Standard Resolution 3'),
'standardResolution4' => t('Standard Resolution 4'),
'standardResolution5' => t('Standard Resolution 5'),
'highResolution1' => t('High Resolution 1'),
'highResolution2' => t('High Resolution 2'),
'highResolution3' => t('High Resolution 3'),
'highResolution4' => t('High Resolution 4'),
'highResolution5' => t('High Resolution 5'),
'highResolution1s' => t('High Resolution 1 Small tile'),
'highResolution2s' => t('High Resolution 2 Small tile'),
'highResolution3s' => t('High Resolution 3 Small tile'),
'highResolution4s' => t('High Resolution 4 Small tile'),
'highResolution5s' => t('High Resolution 5 Small tile'),
);
return $output;
}