Help for this page

Select Code to Download


  1. or download this
    use warnings;
    use strict;
    ...
    my $GE = Win32::OLE->new('GoogleEarth.ApplicationGE');
    my $cameraInfo = $GE->GetCamera(0);
    $cameraInfo->Range = 500;
    
  2. or download this
    use warnings;
    use strict;
    ...
    my $GE = Win32::OLE->new('GoogleEarth.ApplicationGE');
    my $cameraInfo = $GE->GetCamera(0);
    $cameraInfo->Range(500);
    
  3. or download this
    print $cameraInfo->Range;
    
  4. or download this
    use warnings;
    use strict;
    ...
    my $GE         = Win32::OLE->new('GoogleEarth.ApplicationGE');
    my $cameraInfo = $GE->GetCamera(0);
    print Dumper($cameraInfo);
    
  5. or download this
    $VAR1 = bless( {
                     'FocusPointLatitude' => '38.9594283106337',
    ...
                     'Tilt' => '0',
                     'Azimuth' => '-1.00991539999065e-005'
                   }, 'Win32::OLE' );