openlayers_behavior_mapformvalues.inc in Openlayers 6.2
Implementation of OpenLayers behavior.
File
includes/behaviors/openlayers_behavior_mapformvalues.incView source
<?php
/**
* @file
* Implementation of OpenLayers behavior.
*/
/**
* Map Form Values Behavior
*/
class openlayers_behavior_mapformvalues extends openlayers_behavior {
/**
* Provide initial values for options.
*/
function options_init() {
return array(
'center_form' => '#edit-center-initial-centerpoint',
'zoom_form' => '#edit-center-initial-zoom',
);
}
/**
* Render.
*/
function render(&$map) {
drupal_add_js(drupal_get_path('module', 'openlayers') . '/includes/behaviors/js/openlayers_behavior_mapformvalues.js');
return $this->options;
}
}
Classes
Name | Description |
---|---|
openlayers_behavior_mapformvalues | Map Form Values Behavior |