Moves the camera backward, farther from the point of interest.
zoomOut([delta]);
Parameter |
Description |
delta |
Optional Distance to move backward |
Remarks
If the delta parameter is not specified, the zoomOut method triples the distance between the camera and the point of interest
If the delta parameter is negative, the method zooms in.
Example
The following example illustrates the use of the zoomOut method.
function zoomOut500m()
{
globe.navigate.zoomOut(500);
}