Geo::GoogleEarth::Pluggable::Contrib::MultiPolygon - Geo::GoogleEarth::Pluggable MultiPolygon Object
Contents
Bugs
Please log on RT and send to the geo-perl email list.
Constructor
my $placemark=$document->MultiPolygon();
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.
Description
Geo::GoogleEarth::Pluggable::Contrib::MultiPolygon is a Geo::GoogleEarth::Pluggable::Placemark.
Methods
subnode
Name
Geo::GoogleEarth::Pluggable::Contrib::MultiPolygon - Geo::GoogleEarth::Pluggable MultiPolygon Object
See Also
Geo::GoogleEarth::Pluggable, XML::LibXML::LazyBuilder, Geo::GoogleEarth::Pluggable::Placemark
perl v5.32.1 2021-11-28 Geo::GoogleEart...b::MultiPolygon(3pm)
Support
Try geo-perl email list.
Synopsis
use Geo::GoogleEarth::Pluggable;
my $document=Geo::GoogleEarth::Pluggable->new();
$document->MultiPolygon();
Usage
#Note: lon, lat, alt like GeoJSON.
my $placemark=$document->MultiPolygon(
name => "MultiPolygon Name",
coordinates => [
[ #outerBoundaryIs
[lon, lat ,alt],
[lon, lat ,alt],
[lon, lat ,alt],
...
],
[ #innerBoundaryIs
[lon, lat ,alt],
[lon, lat ,alt],
[lon, lat ,alt],
]
],
);
