From 64892b844c5ddc34ce3a915cf2035642dc80af0c Mon Sep 17 00:00:00 2001 From: Jerenus <Jerenus@1864306.no-reply.drupal.org> Date: Wed, 14 Aug 2013 11:55:41 +0300 Subject: [PATCH] Issue #1955750 by curiosity26, Jerenus: Gmap View Plugin doesn't recognize Location CCK Field as valid lat/lon/marker source. --- gmap_plugin_style_gmap.inc | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/gmap_plugin_style_gmap.inc b/gmap_plugin_style_gmap.inc index 12b9af4..d8a0782 100755 --- a/gmap_plugin_style_gmap.inc +++ b/gmap_plugin_style_gmap.inc @@ -199,6 +199,12 @@ class gmap_plugin_style_gmap extends views_plugin_style { elseif ($this->options['datasource'] == 'fields') { $lat = isset($row->{$lat_field}[0]['raw']['value']) ? (float) $row->{$lat_field}[0]['raw']['value'] : NULL; $lon = isset($row->{$lon_field}[0]['raw']['value']) ? (float) $row->{$lon_field}[0]['raw']['value'] : NULL; + + // Field is Location CCK + if (!$lat || !$lon) { + $lat = isset($row->{$lat_field}[0]['raw']['latitude']) ? $row->{$lat_field}[0]['raw']['latitude'] : NULL; + $lon = isset($row->{$lon_field}[0]['raw']['longitude']) ? $row->{$lon_field}[0]['raw']['longitude'] : NULL; + } } // $row->nid is present in node views, views without node as the base table must include the nid field, @@ -237,7 +243,7 @@ class gmap_plugin_style_gmap extends views_plugin_style { } elseif ($this->options['markers'] == 'field') { - if (!empty($row->{$marker_field})) { + if (!empty($row->{$marker_field}) && !empty($row->{$marker_field}[0]['raw']['value'])) { $markername = $row->{$marker_field}[0]['raw']['value']; } } -- GitLab