You can set the speed of flight to SPEED_TELEPORT before loading the abstract representation.
This setting will cause the globe to instantly fly to the right place, and not βrun overβ. If regular moving should be restored, then after the initial scan, you can set the speed back to the default value.
For example, the following function can be used to instantly jump to the right place. The method accepts any KmlAbstractView , that is, KmlCamera or KmlLookAt as the only parameter.
In addition to this, to ensure that the transition is not shown at all for the starting position, you can move the teleport before setting the GEWindow visibility to True. For instance.
function initCB(instance) { ge = instance; var la = ge.createLookAt(''); la.set(-1.251336, -78.443817, 7000, ge.ALTITUDE_RELATIVE_TO_GROUND, 177, 65, 500); teleport(la);
source share