You are here

public function gmap_plugin_style_gmapextended::purpose_list in GMap Module 7.2

Same name and namespace in other branches
  1. 7 gmap_plugin_style_gmapextended.inc \gmap_plugin_style_gmapextended::purpose_list()

Generate options for the selectlist.

1 call to gmap_plugin_style_gmapextended::purpose_list()
gmap_plugin_style_gmapextended::options_form in ./gmap_plugin_style_gmapextended.inc
Render the given style.

File

./gmap_plugin_style_gmapextended.inc, line 57
GMap style plugin.

Class

gmap_plugin_style_gmapextended

Code

public function purpose_list() {
  return array(
    '' => t('Unused'),
    'text' => t('Marker bubble contents'),
    // @@@ Stupid title
    'rmt' => t('RMT tail'),
    'iwq' => t('Info window query'),
    'iwo' => t('Info window offset'),
    'link' => t('URL to visit when clicking marker'),
    'latitude' => t('Marker latitude'),
    'longitude' => t('Marker longitude'),
    'dyn' => t('Address for dynamic geocoding'),
    'title' => t('Marker title (tooltip)'),
    'markername' => t('Marker type'),
    'offset' => t('Marker offset'),
  );
}