function _mapbox_layers_info in Openlayers 7.2
1 call to _mapbox_layers_info()
- _openlayers_openlayers_layers in includes/
openlayers.layers.inc - Internal callback Helper function to return default layers.
File
- includes/
openlayers.layers.inc, line 400 - This file contains layers implementations.
Code
function _mapbox_layers_info() {
$info = array();
$info['mapbox_world_bright'] = array(
'name' => t('MapBox World Bright'),
'description' => t('MapBox World Bright'),
'layername' => 'world-bright',
'minzoom' => 0,
'maxzoom' => 11,
);
$info['mapbox_world_dark'] = array(
'name' => t('MapBox World Dark'),
'description' => t('MapBox World Dark'),
'layername' => 'world-dark',
'minzoom' => 0,
'maxzoom' => 11,
);
$info['mapbox_world_light'] = array(
'name' => t('MapBox World Light'),
'description' => t('MapBox World Light'),
'layername' => 'world-light',
'minzoom' => 0,
'maxzoom' => 11,
);
$info['mapbox_world_print'] = array(
'name' => t('MapBox World Print'),
'description' => t('MapBox World Print'),
'layername' => 'world-print',
'minzoom' => 0,
'maxzoom' => 9,
);
$info['mapbox_world_black'] = array(
'name' => t('MapBox World Black'),
'description' => t('MapBox World Black'),
'layername' => 'world-black',
'minzoom' => 0,
'maxzoom' => 11,
);
return $info;
}