You are here

class openlayers_behavior_touch_navigation in Openlayers 7.2

Touch Navigation Behavior

Hierarchy

Expanded class hierarchy of openlayers_behavior_touch_navigation

File

plugins/behaviors/openlayers_behavior_touch_navigation.inc, line 10
Implementation of OpenLayers behavior.

View source
class openlayers_behavior_touch_navigation extends openlayers_behavior {

  /**
   * Provide initial values for options.
   */
  function options_init() {
    return array(
      'documentDrag' => FALSE,
    );
  }
  function js_dependency() {
    return array(
      'OpenLayers.Control.TouchNavigation',
    );
  }
  function options_form($defaults = array()) {
    return array(
      '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,
      ),
    );
  }

  /**
   * Render.
   */
  function render(&$map) {
    drupal_add_js(drupal_get_path('module', 'openlayers') . '/plugins/behaviors/openlayers_behavior_touch_navigation.js');
    return $this->options;
  }

}

Members