On May 9, 7:19 pm, puff <[email protected]> wrote:

> You can find the code here:http://great-loop.appspot.com/Great_Loop_Home.
> The code at issue is the GW.map class in gwxxx.js.  This class is used
> to create each of the maps.

I couldn't get that page to load at all, in either Chrome or FF. Just
a blank white and blue background. Have you changed it since you
posted the link?

> Can anyone provide any guidance concerning use of a single control
> instance on multiple maps or use of a single geo feature instance on
> multiple maps.

Generally, I'd say that if you have multiple map instances, you'll
need multiple instances of whatever you're trying to add. The approach
you're using really sounds like it will cause trouble somewhere. IOW,
you'll want code more like the following (untested):

            var omc1 = new GOverviewMapControl( new GSize( 140,
140 ));
            map1.addControl( omc1 );
            var omc2 = new GOverviewMapControl( new GSize( 140,
140 ));
            map2.addControl( omc2 );

HTH,

String


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

Reply via email to