When you call
var googleMap2Div = document.getElementById("map2");
the function does not get hold of the <div> because it has been called
from within the event handler of the click event and it is out of
scope.
Move the code from the function loadDetailMap2 inside the event
handler, like this:
GEvent.addListener(marker, "click", function() {
marker.openInfoWindowHtml(html);
var detailmap = new GMap2(googleMap2Div);
detailmapsetCenter(marker.getLatLng());
// ... etc
});
Example here:
http://maps.forum.nu/gm_minimap_in_infowindow.html
--
Marcelo - http://maps.forum.nu
--
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---