Glad you got it working!

Did you happen to see my two messages? Even though you have the immediate
problem solved, you would learn some very useful programming tricks from the
comments and code I posted. In particular, the use of parallel arrays will
cause you no end of grief. If you study how I changed that to use a single
object per region, you could save yourself a lot of work in your future
projects.

I did notice one bug in the code I posted - of course! The addRegions()
function should have read:

    function addRegions( regions ) {
        for( var id in regions ) {
            addRegion( regions[id] );
        }
    }

-Mike

On Mon, May 2, 2011 at 1:58 PM, knieriemrt <[email protected]> wrote:

> I have figured it out.  After wrapping my function in another and changing
> the scope on the bounds variable I have it working.  Thanks for your help
> Xelawho!
>
>

-- 
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.

Reply via email to