You are here

function openlayers_plus_behavior_tooltips_field::render in OpenLayers Plus 7

Same name and namespace in other branches
  1. 7.3 behaviors/openlayers_plus_behavior_tooltips_field.inc \Openlayers_plus_behavior_tooltips_field::render()
  2. 7.2 behaviors/openlayers_plus_behavior_tooltips_field.inc \Openlayers_plus_behavior_tooltips_field::render()

Render.

Overrides openlayers_behavior::render

File

behaviors/openlayers_plus_behavior_tooltips_field.inc, line 34

Class

openlayers_plus_behavior_tooltips_field

Code

function render(&$map) {
  $settings = array(
    'openlayers_plus_behavior_tooltips_field' => array(
      'field' => "field_category",
    ),
  );
  drupal_add_js($settings, array(
    'type' => 'setting',
  ));
  drupal_add_js(drupal_get_path('module', 'openlayers_plus') . '/behaviors/openlayers_plus_behavior_tooltips_field.js');
  return $this->options;
}