
Geo::GoogleEarth::Document::LinearRing - Geo::GoogleEarth::Document::LinearRing

use Geo::GoogleEarth::Document;
my $document=Geo::GoogleEarth::Document->new();
my $placemark = $document->placemark();
$placemark->LinearRing( extrude=>boolean, tessellate=>boolean, coordinates=>coor
altitudeMode => mode );

Geo::GoogleEarth::Document::LinearRing is a Geo::GoogleEarth::Document::Base with a few other methods.

my $LinearRing = $placemark->LinearRing( extrude=>boolean, tessellate=>boolean,
coordinates=>coor, altitudeMode => mode );

my $LinearRing = $placemark->LinearRing( extrude=>boolean, tessellate=>boolean,
coordinates=>coor, altitudeMode => mode );

Returns the object type.
my $type=$LinearRing->type;
Returns a hash reference for feeding directly into XML::Simple.
my $structure=$style->structure;
<LinearRing id="ID">
<!-- specific to LinearRing -->
<extrude>0</extrude> <!-- boolean -->
<tessellate>0</tessellate> <!-- boolean -->
<altitudeMode>clampToGround</altitudeMode>
<!-- kml:altitudeModeEnum: clampToGround, relativeToGround, or absolute -->
<coordinates>...</coordinates> <!-- lon,lat[,alt] tuples -->
</LinearRing>


Contact the author.

David Hillman
CPAN: DAHILLMA

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.

Geo::GoogleEarth::Document creates a GoogleEarth KML Document.