On Sep 17, 8:29 pm, b747fp <[email protected]> wrote: > i have the following listener function to open an info window on click > of a marker... however, when someone clicks a marker and then clicks > another marker that has "ismulti == 'yes'" without closing the first > info window, it does not load the info window... why?? > > google.maps.event.addListener(marker, 'click', function() { > > infowindow.setContent(contentString); > infowindow.open(map,marker); > > if(ismulti != "no"){ > var checkmulti=ismulti.split("_"); > var latlonval=checkmulti[1]; > var curnum=checkmulti[2]; > var totalnum=checkmulti[3]; > loadMultiWindow(latlonval,curnum,totalnum); > > } > > });
Where is your map that shows the problem? -- Larry -- You received this message because you are subscribed to the Google Groups "Google Maps JavaScript API v3" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-maps-js-api-v3?hl=en.
