The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more

our $VERSION = '0.007';
# ABSTRACT: Moo::Role representing behaviour of a geojson Geometry object
use Types::Standard qw/ Any /;
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