Geo::GoogleEarth::Pluggable::Plugin::CircleByCenterPoint - CircleByCenterPoint plugin for Geo::GoogleEarth::Pluggable


Geo-GoogleEarth-Pluggable-Plugin-CircleByCenterPoint documentation  | view source Contained in the Geo-GoogleEarth-Pluggable-Plugin-CircleByCenterPoint distribution.

Index


NAME

Top

Geo::GoogleEarth::Pluggable::Plugin::CircleByCenterPoint - CircleByCenterPoint plugin for Geo::GoogleEarth::Pluggable

SYNOPSIS

Top

  use Geo::GoogleEarth::Pluggable;
  my $document=Geo::GoogleEarth::Pluggable->new;
  my $circle=$document->CircleByCenterPoint(%data);
  my $arc=$document->ArcByCenterPoint(%data);

DESCRIPTION

Top

USAGE

Top

METHODS

Top

CircleByCenterPoint

  my $polygon=$document->CircleByCenterPoint(
                                name       => "My CircleByCenterPoint",
                                radius     => 1000,       #meters
                                lat        =>  38.896079, #WGS-84 degrees
                                lon        => -77.036554, #WGS-84 degrees
                                alt        => 0,      #reference see LookAt
                                deltaAngle => 7.2,    #default
                               );

ArcByCenterPoint

  my $polygon=$document->ArcByCenterPoint(
                                name       => "My ArcByCenterPoint",
                                radius     => 500,    #meters
                                startAngle => 33.3,   #degrees CW/North
                                endAngle   => 245.7,  #degrees CW/North
                                deltaAngle => 7.2,    #default
                                lat        => 38.889, #WGS-84 degrees
                                lon        =>-77.035, #WGS-84 degrees
                                alt        => 0,      #reference LookAt
                               );

BoundingBox

  my $box=$folder->BoundingBox(
                                 name => "My Box",
                                 ulat => 39.1,
                                 ulon => -77.1,
                                 llat => 38.9,
                                 llon => -77.3,
                                 alt  => 0
                              );

BUGS

Top

SUPPORT

Top

AUTHOR

Top

    Michael R. Davis
    CPAN ID: MRDVT
    STOP, LLC
    domain=>michaelrdavis,tld=>com,account=>perl
    http://www.stopllc.com/

COPYRIGHT

Top

SEE ALSO

Top

Geo::GoogleEarth::Pluggable


Geo-GoogleEarth-Pluggable-Plugin-CircleByCenterPoint documentation  | view source Contained in the Geo-GoogleEarth-Pluggable-Plugin-CircleByCenterPoint distribution.