>   google.earth.createInstance("map3d_1", initCallback_1,
> failureCallback);
>   google.earth.createInstance("map3d_2", initCallback_2,
> failureCallback);

I think you're going to need to keep references to these two GE
objects if you want to do things with them later.
   myge_1 = google.earth.createInstance(...
   myge_2 = google.earth.createInstance(...

> function initCallback_1(object) {
>   ge = object;

Take care here, ge appears to be a global variable.  Within your two
callback funcs they are actually doing things to the same 'ge'
   function initCallback_1(object) {
      var ge = object;
might work better.

cheers, Ross K

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