You are here

function openlayers_behavior_navigation::options_form in Openlayers 7.2

Same name and namespace in other branches
  1. 6.2 includes/behaviors/openlayers_behavior_navigation.inc \openlayers_behavior_navigation::options_form()

Overrides openlayers_behavior::options_form

File

plugins/behaviors/openlayers_behavior_navigation.inc, line 27
Implementation of OpenLayers behavior.

Class

openlayers_behavior_navigation
Navigation Behavior

Code

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,
    ),
    'zoomBoxEnabled' => array(
      '#type' => 'checkbox',
      '#title' => t('Enable Zoom Box'),
      '#description' => t('Enable zooming with selecting a box by <em>SHIFT + clicking</em>.'),
      '#default_value' => isset($defaults['zoomBoxEnabled']) ? $defaults['zoomBoxEnabled'] : TRUE,
    ),
    'documentDrag' => array(
      '#type' => 'checkbox',
      '#title' => t('Document Drag'),
      '#description' => t('Allow panning of the map by dragging outside map viewport.'),
      '#default_value' => isset($defaults['documentDrag']) ? $defaults['documentDrag'] : FALSE,
    ),
  );
}