class openlayers_behavior_navigation in Openlayers 6.2
Same name and namespace in other branches
- 7.2 plugins/behaviors/openlayers_behavior_navigation.inc \openlayers_behavior_navigation
Navigation Behavior
Hierarchy
- class \openlayers_behavior
Expanded class hierarchy of openlayers_behavior_navigation
2 string references to 'openlayers_behavior_navigation'
- _openlayers_openlayers_behaviors in includes/
openlayers.behaviors.inc - Implementation of hook_openlayers_behaviors().
- _openlayers_upgrade_1xto2x_convert_behaviors in ./
openlayers.install - Converting behaviors for the upgrade from 1.x to 2.x
File
- includes/
behaviors/ openlayers_behavior_navigation.inc, line 11 - Implementation of OpenLayers behavior.
View source
class openlayers_behavior_navigation extends openlayers_behavior {
/**
* Provide initial values for options.
*/
function options_init() {
return array(
'navigation' => '',
'zoomWheelEnabled' => TRUE,
);
}
function js_dependency() {
return array(
'OpenLayers.Control.Navigation',
);
}
function options_form($defaults = array()) {
return array(
'zoomWheelEnabled' => array(
'#type' => 'checkbox',
'#title' => t('Enable Zoom Wheel'),
'#description' => t('Enable zooming via the mouse scroll wheel. This can
interfere with page scrolling.'),
'#default_value' => isset($defaults['zoomWheelEnabled']) ? $defaults['zoomWheelEnabled'] : TRUE,
),
);
}
/**
* Render.
*/
function render(&$map) {
drupal_add_js(drupal_get_path('module', 'openlayers') . '/includes/behaviors/js/openlayers_behavior_navigation.js');
return $this->options;
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
openlayers_behavior:: |
property | |||
openlayers_behavior:: |
function | |||
openlayers_behavior_navigation:: |
function |
Overrides openlayers_behavior:: |
||
openlayers_behavior_navigation:: |
function |
Overrides openlayers_behavior:: |
||
openlayers_behavior_navigation:: |
function |
Provide initial values for options. Overrides openlayers_behavior:: |
||
openlayers_behavior_navigation:: |
function |
Render. Overrides openlayers_behavior:: |