NAME
Geo::GoogleEarth::Pluggable::Plugin::CircleByCenterPoint - CircleByCenterPoint plugin for Geo::GoogleEarth::Pluggable
SYNOPSIS
use Geo::GoogleEarth::Pluggable;
my $document=Geo::GoogleEarth::Pluggable->new;
my $circle=$document->CircleByCenterPoint(%data);
my $arc=$document->ArcByCenterPoint(%data);
DESCRIPTION
USAGE
METHODS
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
SUPPORT
AUTHOR
Michael R. Davis
CPAN ID: MRDVT
STOP, LLC
domain=>michaelrdavis,tld=>com,account=>perl
http://www.stopllc.com/
COPYRIGHT
This program is free software licensed under the...
The BSD License
The full text of the license can be found in the LICENSE file included with this module.