—package
Geo::JSON::Role::Geometry;
our
$VERSION
=
'0.007'
;
# ABSTRACT: Moo::Role representing behaviour of a geojson Geometry object
use
Moo::Role;
has
coordinates
=> (
is
=>
'ro'
,
isa
=> Any,
required
=> 1 );
1;
__END__
=encoding utf-8
=head1 NAME
Geo::JSON::Role::Geometry
=head1 DESCRIPTION
L<Moo::Role> for GeoJSON geometry objects (Point, MultiPoint, LineString,
MultiLineString, Polygon, MultiPolygon).
See L<Geo::JSON> for more details.
=head1 ATTRIBUTES
=head2 coordinates
=cut