NAME
Geo::JSON::MultiPoint
SYNOPSIS
use Geo::JSON::MultiPoint;
my $mpt = Geo::JSON::MultiPoint->new({
coordinates => [ [ 51.50101, -0.14159 ],
[ 57.596278, -13.687306 ],
],
});
my $json = $mpt->to_json;
DESCRIPTION
A GeoJSON object with a coordinates attribute consisting of an arrayref of positions.
See Geo::JSON for more details.