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.

Explanation of title

I have a google maps with several markers each has a info window.

Actions:

User clicks in marker and listener is triggered - OK User clicks in a onclick function [myclick(i)] the info window (specific marker) is displayed

Errors:

myclick(i) works the first time, after that will not!

Code:

<script type="text/javascript" src="http://maps.google.com/maps/api/js?sensor=false"></script>
<script type="text/javascript" src="js/jquery.scrollTo.js"></script>

<script type="text/javascript">

var markers = [];

var locations = [    
['PLace 1', -8.2306155581, 37.0871796116, 'A', 'info 1'],
['Place 2', -8.5448366404, 37.1314707841, 'B', 'info 2']];



function showmap() {
  $('#results_map').toggle();

  var map = new google.maps.Map(document.getElementById('map'), {
    zoom: 10,
    center: new google.maps.LatLng(37.083, -8.25),
    mapTypeId: google.maps.MapTypeId.SATELLITE
  });

  var i;

  google.maps.event.trigger(map, 'resize');

  for (i = 0; i < locations.length; i++) {  
    markers[i] = new google.maps.Marker({
      position: new google.maps.LatLng(locations[i][2], locations[i][1]),
      map: map,
      icon: 'http://chart.apis.google.com/chart?chst=d_map_pin_letter&chld='+locations[i][3]+'|FF0000|FFFFFF',
      title: locations[i][0]
    });

    markers[i].info = new google.maps.InfoWindow({
      content: locations[i][4]
    }); 


    markers[i].setMap(map);

  }

google.maps.event.addListener(markers[0], 'click', function(){
        $(document.body).scrollTo('#placeA', 800, 'swing');
        markers[0].info.close();
      });       
google.maps.event.addListener(markers[1], 'click', function(){
    $(document.body).scrollTo('#placeB', 800, 'swing');
    markers[1].info.close();
  });       

}

function myclick(i) { 
  $(document.body).scrollTo('#results', 800, 'swing');

  markers[i].info.open(map, markers[i]);  

}

</script>

<div id="results_map"><div id="map"></div></div>

<a href="javascript:;" onclick="myclick(0)">Map 1</a>
<a href="javascript:;" onclick="myclick(1)">Map 2</a>

Where is my mistake?

Thank you for your help

hort

share|improve this question
What javascript errors are you getting? I don't see an include of jQuery, but that might just be an oversight on your part. – geocodezip Sep 11 '12 at 10:44
@geocodezip: Jquery is included via googleapis code Error: TypeError: d.N is not a function Source File: maps.gstatic.com/intl/en_us/mapfiles/api-3/9/14/main.js Line: 80 code – hort Sep 12 '12 at 11:05
I don't see anything that would include it (unless it is in js/jquery.scrollTo.js, which is not "googleapis code"). That error is not helpful, please post a link or a jsfiddle that exhibits the issue. – geocodezip Sep 12 '12 at 11:38
@geocodezip (jsfiddle.net/uCUDJ/1) I believe that now is everything there, thank you – hort Sep 12 '12 at 13:32

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.