On 19 September 2010 19:46, jonathan <[email protected]> wrote: > Hey thanks, that's a partial solution because although I've modified > the map bounds so that the top of the infoWindow for Maine now appears > in the map window, the infoWindow for Arizona does not, even though > there is plenty of room in the allowed map bounds to show it. Why is > that?
InfoWindows avoid all the screen controls. When Arizona opens, it hits the map-type control and stops. Basically your infoWindows are just too big for your map. The API copes as best it can. What you could do is have a custom event on that marker which moves the marker to where it has to be for the infoWindow, and then opens it, instead of getting the API to do the moving. -- You received this message because you are subscribed to the Google Groups "Google Maps API V2" 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.
