Skip to content
Snippets Groups Projects
Commit 03a0c157 authored by nkschaefer's avatar nkschaefer Committed by http://druler.com
Browse files

Issue #1115282 by nkschaefer, dasjo: Fixed Column not found: 1054 Unknown...

Issue #1115282 by nkschaefer, dasjo: Fixed Column not found: 1054 Unknown column \'latitude\' in \'field list\'.
parent 3b60e955
No related branches found
No related tags found
No related merge requests found
...@@ -133,6 +133,18 @@ class gmap_plugin_style_gmapextended extends views_plugin_style { ...@@ -133,6 +133,18 @@ class gmap_plugin_style_gmapextended extends views_plugin_style {
'#markup' => '<div class="description form-item">' . t('Assign purposes to fields you are using to supply map data. NOTE: This style is under heavy development currently, no backwards compatibility is guaranteed!') . '</div>', '#markup' => '<div class="description form-item">' . t('Assign purposes to fields you are using to supply map data. NOTE: This style is under heavy development currently, no backwards compatibility is guaranteed!') . '</div>',
); );
$form['datasource'] = array(
'#type' => 'select',
'#title' => t('Data Source'),
'#options' => array(
'location' => t('Location.module'),
'fields' => t('Choose latitude and longitude fields'),
//'geocode' => t('Just-in-time geocoding on field named "address"'),
),
'#default_value' => $this->options['datasource'],
'#multiple' => FALSE,
);
$form['clickmode'] = array( $form['clickmode'] = array(
'#type' => 'radios', '#type' => 'radios',
'#title' => t('Marker click action'), '#title' => t('Marker click action'),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment