openlayers_behavior_attribution.inc in Openlayers 6.2
Implementation of OpenLayers behavior.
File
includes/behaviors/openlayers_behavior_attribution.incView source
<?php
/**
* @file
* Implementation of OpenLayers behavior.
*/
/**
* Attribution Behavior
*/
class openlayers_behavior_attribution extends openlayers_behavior {
/**
* Provide initial values for options.
*/
function options_init() {
return array(
'attribution' => '',
);
}
function js_dependency() {
return array(
'OpenLayers.Control.Attribution',
);
}
function options_form($defaults = array()) {
return array();
}
/**
* Render.
*/
function render(&$map) {
drupal_add_js(drupal_get_path('module', 'openlayers') . '/includes/behaviors/js/openlayers_behavior_attribution.js');
return $this->options;
}
}
Classes
Name | Description |
---|---|
openlayers_behavior_attribution | Attribution Behavior |