openlayers/openlayers.module, line 435
- Versions
- 6
openlayers_openlayers_layers_handler_info($map = array())
Implemnetation of hook_openlayers_layers_handler_info
Code
<?php
function openlayers_openlayers_layers_handler_info($map = array()) {
return array(
'WMS' => array(
'layer_handler' => 'WMS',
'js_file' => drupal_get_path('module', 'openlayers') .'/js/openlayers.layers.js',
),
'Vector' => array(
'layer_handler' => 'Vector',
'js_file' => drupal_get_path('module', 'openlayers') .'/js/openlayers.layers.js',
),
);
}
?> 