Hi KoldFuzun- Have you thought about extending OverlayBase to just create your own infowindow, and not use openInfoWindow at all? That's the ultimately most flexible solution.
The features that openInfoWindow gives you are: - Automatically panning the map to fit the info window - Making sure only one info window is open at a time For the former, you can look at various open-source JS code to see how to accomplish it: - repositionMap_ in ExtInfoWindow: http://gmaps-utility-library-dev.googlecode.com/svn/trunk/extinfowindow/src/extinfowindow.js - redraw in InfoBox (simpler): http://gmaps-samples.googlecode.com/svn/trunk/demo/infobox.js For the latter, you can do that easily with a boolean and add/removeOverlay. - pamela On Sun, Mar 29, 2009 at 6:27 AM, KoldFuzun <[email protected]> wrote: > > I posted my "final" version of the app if you wanted to take a peek. > The header uses the Flex/AJAX Bridge to communicate with the app > depending on the sections of the user and display the appropriate > image. The client is naturally going to modify those images to match > targeted ads they want to display. > > The only outstanding thing, and still bugging me, is being able to > resize those damned info windows :) > > > > > --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Google Maps API For Flash" 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-for-flash?hl=en -~----------~----~----~----~------~----~------~--~---
