2009-03-11から1日間の記事一覧

Geo::Coder::Googleを逆ジオコーディングに対応させる

リクエストパラメータを切り替えるだけでよかったので、簡単でした! { package Geo::Coder::Google; { no warnings 'redefine'; sub geocode { my $self = shift; my %param; if ( @_ % 2 == 0 ) { %param = @_; } else { $param{location} = shift; } my @…