You are here

function gmap_plugin_style_gmapextended::purpose_list in GMap Module 7

Same name and namespace in other branches
  1. 7.2 gmap_plugin_style_gmapextended.inc \gmap_plugin_style_gmapextended::purpose_list()
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 53
GMap style plugin.

Class

gmap_plugin_style_gmapextended
Style plugin to render a map.

Code

function purpose_list() {
  return array(
    '' => t('Unused'),
    'text' => t('Marker bubble contents'),
    'rmt' => t('RMT tail'),
    // @@@ Stupid title
    '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'),
  );
}