class openlayers_behavior_popup in Openlayers 6.2
Same name and namespace in other branches
- 7.2 plugins/behaviors/openlayers_behavior_popup.inc \openlayers_behavior_popup
Attribution Behavior
Hierarchy
- class \openlayers_behavior
- class \openlayers_behavior_popup
Expanded class hierarchy of openlayers_behavior_popup
1 string reference to 'openlayers_behavior_popup'
- _openlayers_openlayers_behaviors in includes/
openlayers.behaviors.inc - Implementation of hook_openlayers_behaviors().
File
- includes/
behaviors/ openlayers_behavior_popup.inc, line 11 - Implementation of OpenLayers behavior.
View source
class openlayers_behavior_popup extends openlayers_behavior {
/**
* Provide initial values for options.
*/
function options_init() {
return array(
'layers' => array(),
);
}
/**
* Form defintion for per map customizations.
*/
function options_form($defaults) {
// Only prompt for vector layers
$vector_layers = array();
foreach ($this->map['layers'] as $id => $name) {
$layer = openlayers_layer_load($id);
if (isset($layer->data['vector']) && $layer->data['vector'] == TRUE) {
$vector_layers[$id] = $name;
}
}
return array(
'layers' => array(
'#title' => t('Layers'),
'#type' => 'checkboxes',
'#options' => $vector_layers,
'#description' => t('Select layer to apply popups to.'),
'#default_value' => isset($defaults['layers']) ? $defaults['layers'] : array(),
),
);
}
/**
* Render.
*/
function render(&$map) {
drupal_add_js(drupal_get_path('module', 'openlayers') . '/includes/behaviors/js/openlayers_behavior_popup.js');
return $this->options;
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
openlayers_behavior:: |
property | |||
openlayers_behavior:: |
function | 15 | ||
openlayers_behavior:: |
function | |||
openlayers_behavior_popup:: |
function |
Form defintion for per map customizations. Overrides openlayers_behavior:: |
||
openlayers_behavior_popup:: |
function |
Provide initial values for options. Overrides openlayers_behavior:: |
||
openlayers_behavior_popup:: |
function |
Render. Overrides openlayers_behavior:: |