There is no tooltip in the Extended GMap View, when you hold mouse over a marker.
It's like this, because title (tooltip) is directly put into marker array, while it's expected to be in opts sub array.
That line added to template_preprocess_gmap_views_view_gmapextended() in gmap.views.inc, solved the problem for me:
$markers[$offset]['opts'] = array('title' => isset($marker['title']) ? $marker['title'] : NULL);
But I'm not sure if it is the right solution.

Comments

dafeder’s picture

Status: Active » Needs review
StatusFileSize
new539 bytes

Worked for me. Here's a patch.

dafeder’s picture

StatusFileSize
new556 bytes

Might want to use this one, to decode HTML entities in the tooltip.

dafeder’s picture

Might want to use this one, to decode HTML entities in the tooltip.

alexdmccabe’s picture

Confirming that the patch in #2 works, can't comment on the validity of the solution however.

dafeder’s picture

For some reason the link in #2 is broken but the patch is still there: http://drupal.org/files/issues/gmap-tooltips_1061006_2.patch

podarok’s picture

Version: 7.x-1.x-dev » 7.x-2.x-dev
Status: Needs review » Fixed

#2 commited / pushed to 7.x-2.x and 7.x-1.x

removing trailing whitespaces from here

thanks!!!!

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.