Wasn't it Daniish who wrote:
>
>Thanks for that Black Fog - it now displays the map properly, however,
>when i click on the "Add a comment" link on the infowindow - instead
>of displaying the form it zooms the map back out to the nearest
>regional marker.

Clicking on that link causes this line to be executed
  gmarkers[i].openInfoWindowHtml(comments[i]);
but since you currently have the info window open that gets picked up by
  GEvent.addListener(map, 'infowindowclose', function() {
    map.setZoom(7);
  });
That in turn causes the marker manager to removeOverlay the marker,
which causes the openInfoWindow not to work.

-- 
http://econym.org.uk/gmap
The Blackpool Community Church Javascript Team


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Google Maps API" 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-API?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to