class openlayers_behavior_boxselect in Openlayers 6.2
Same name and namespace in other branches
- 7.2 plugins/behaviors/openlayers_behavior_boxselect.inc \openlayers_behavior_boxselect
BoxSelect Behavior
Hierarchy
- class \openlayers_behavior
Expanded class hierarchy of openlayers_behavior_boxselect
1 string reference to 'openlayers_behavior_boxselect'
- _openlayers_openlayers_behaviors in includes/
openlayers.behaviors.inc - Implementation of hook_openlayers_behaviors().
File
- includes/
behaviors/ openlayers_behavior_boxselect.inc, line 11 - Implementation of OpenLayers behavior.
View source
class openlayers_behavior_boxselect extends openlayers_behavior {
/**
* Provide initial values for options.
*/
function options_init() {
return array(
'input_fields' => '',
);
}
function js_dependency() {
return array(
'OpenLayers.Control.DrawFeature',
'OpenLayers.Layer.Vector',
'OpenLayers.Handler.RegularPolygon',
);
}
function options_form() {
return array();
}
/**
* Render.
*/
function render(&$map) {
drupal_add_js(drupal_get_path('module', 'openlayers') . '/includes/behaviors/js/openlayers_behavior_boxselect.js');
return $this->options;
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
openlayers_behavior:: |
property | |||
openlayers_behavior:: |
function | |||
openlayers_behavior_boxselect:: |
function |
Overrides openlayers_behavior:: |
||
openlayers_behavior_boxselect:: |
function |
Overrides openlayers_behavior:: |
||
openlayers_behavior_boxselect:: |
function |
Provide initial values for options. Overrides openlayers_behavior:: |
||
openlayers_behavior_boxselect:: |
function |
Render. Overrides openlayers_behavior:: |