| Geo-GeoPo documentation | view source | Contained in the Geo-GeoPo distribution. |
Geo::Formatter::Format::GeoPo - Add GeoPo format to Geo::Formatter
use Geo::Formatter qw(GeoPo);
my ( $lat, $lng, $scale ) = format2latlng( 'geopo', 'Z4RHXX' );
# 35.658578, 139.745447, 6
my ( $lat, $lng, $scale ) = format2latlng( 'geopo', 'http://geopo.at/Z4RHXX' );
# Same result
my $geopo = latlng2format( 'geopo', 35.658578, 139.745447, { scale => 6 } );
# Z4RHXX
my $geopo = latlng2format( 'geopo', 35.658578, 139.745447, { scale => 6, as_url => 1 } );
# http://geopo.at/Z4RHXX
Geo::Formatter::Format::GeoPo adds GeoPo format to Geo::Formatter.
OHTSUKA Ko-hei <nene@kokogiko.net>
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
| Geo-GeoPo documentation | view source | Contained in the Geo-GeoPo distribution. |