Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am using Views to create 2 things 1: Locations list (table) PAGE 2: GMap ATTACHMENT

What I'd like to do is link the location title in the locations list to marker/popup in the map.

I've found sites that allow me to do this outside of Drupal, but would like to keep the site "Drupal Friendly".

Any help/hints would be greatly appreciated!!

Cheers

share|improve this question

2 Answers

The discussion on this page should answer your question.

http://drupal.org/node/791998

share|improve this answer
Sweet! Took me a while to find the correct map ID. – Erik Jan 14 '11 at 17:54
Well I kind of got it to work. It only works for the first two locations. – Erik Jan 14 '11 at 18:42

you just need to add this code below in relative tpl file of drupal.

"seeMap a" is achor link when we click then google map pop open.

This is code which trigger popup:

GEvent.trigger(Drupal.settings.gmap.auto1map.markers[i].marker, "click");

"auto1map" depends your setting.

This is the code for to move position top:

  var _pos = $('#banner').position(); 
      _pos_top = _pos.top;
      $('html,body').animate({scrollTop:eval(_pos_top) - 50},500);

Main code:

$(document).ready(function(){

   $('.seeMap a').each(function(i){

       $(this).bind('click', function(){
           var _pos = $('#banner').position(); 
       _pos_top = _pos.top;

       $('html,body').animate({scrollTop:eval(_pos_top) - 50},500);
                    GEvent.trigger(Drupal.settings.gmap.auto1map.markers[i].marker, "click");
                    return false;
                });
            });


        }); 
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.