You are here

class openlayers_behavior_zoompanel in Openlayers 6.2

Same name and namespace in other branches
  1. 7.2 plugins/behaviors/openlayers_behavior_zoompanel.inc \openlayers_behavior_zoompanel

Zoom Panel Behavior

Hierarchy

Expanded class hierarchy of openlayers_behavior_zoompanel

1 string reference to 'openlayers_behavior_zoompanel'
_openlayers_openlayers_behaviors in includes/openlayers.behaviors.inc
Implementation of hook_openlayers_behaviors().

File

includes/behaviors/openlayers_behavior_zoompanel.inc, line 11
Implementation of OpenLayers behavior.

View source
class openlayers_behavior_zoompanel extends openlayers_behavior {

  /**
   * Provide initial values for options.
   */
  function options_init() {
    return array(
      'panzoom' => '',
    );
  }
  function js_dependency() {
    return array(
      'OpenLayers.Control.ZoomPanel',
    );
  }

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

}

Members