You are here

class openlayers_behavior_zoomtomaxextent in Openlayers 7.2

Same name and namespace in other branches
  1. 6.2 includes/behaviors/openlayers_behavior_zoomtomaxextent.inc \openlayers_behavior_zoomtomaxextent

Zoom to Max Extent Behavior

Hierarchy

Expanded class hierarchy of openlayers_behavior_zoomtomaxextent

File

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

View source
class openlayers_behavior_zoomtomaxextent extends openlayers_behavior {

  /**
   * Provide initial values for options.
   */
  function options_init() {
    return array(
      'zoomtomaxextent' => '',
    );
  }

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

}

Members