NAME
Geo::JSON::MultiPoint - object representing a geojson MultiPoint
VERSION
version 0.002
SYNOPSIS
use Geo::JSON::MultiPoint;
my $mpt = Geo::JSON::Point->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.
AUTHOR
Michael Jemmeson <mjemmeson@cpan.org>
COPYRIGHT AND LICENSE
This software is copyright (c) 2013 by Michael Jemmeson <mjemmeson@cpan.org>.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.