i have also tried with the info found here which seems to be relevant:
http://code.google.com/apis/earth/documentation/camera_control.html
Zooming the camera:
Zooming in and out is controlled by the range attribute for LookAts,
and the altitude attribute for Cameras.
Note that changing the altitude attribute of a LookAt changes the
altitude of the point being viewed. Because the viewer range is
relative to this point, the viewer's altitude is also changed.
Lookout:
// Get the current view
var lookAt =
ge.getView().copyAsLookAt(ge.ALTITUDE_RELATIVE_TO_GROUND);
// Zoom out to twice the current range
lookAt.setRange(lookAt.getRange() * 2.0);
// Update the view in Google Earth
ge.getView().setAbstractView(lookAt);
Camera:
// Get the current view
var camera =
ge.getView().copyAsCamera(ge.ALTITUDE_RELATIVE_TO_GROUND);
// Zoom out to twice the current distance
camera.setAltitude(camera.getAltitude() + 5000);
// Update the view in Google Earth
ge.getView().setAbstractView(camera);
but again, i don't know how and where to use it in my code with the
map initialized with:
google.earth.createInstance('map3d', initCB, failureCB, { 'language':
'en' });