this is the correct syntax: <a href='javascript:map.getInfoWindow().maximize()'>
the errors occur because your function readMap is recursive, and includes map as an argument. There is only one map, it is defined only once, so you can remove it from the argument list: var map; function readMap(nom,coordonnees,genre,zoomdyn,movezoom) Also test for map being null instead of "none" var gmarkers = []; if(map == null) -- 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.
