Created
October 18, 2011 09:22
-
-
Save t-kashima/1295030 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package Map::RemapGoogleMap; | |
use strict; | |
use warnings; | |
use base qw(Class::Accessor::Fast); | |
use Carp qw(croak); | |
use LWP::UserAgent; | |
use URI; | |
__PACKAGE__->mk_accessors(qw(url)); | |
sub new { | |
my ($class, %args) = @_; | |
my $self = bless {}, $class; | |
$self->{url} = $self->url_check(URI->new($args{url})) or croak 'failed url'; | |
return $self; | |
} | |
sub url_check { | |
my ($self, $url) = @_; | |
my $ua = LWP::UserAgent->new; | |
my $res = $ua->get($url); | |
if ($res->is_success) { | |
return $url if ($res->decoded_content =~ /rakutenMap|YMap/); | |
} | |
return undef; | |
} | |
sub latlng { | |
my $self = shift; | |
my $ua = LWP::UserAgent->new; | |
my $res = $ua->get($self->url); | |
if ($res->is_success) { | |
my $content = $res->decoded_content; | |
if ($content =~ /rakutenMap/) { | |
return $self->rakuten_map_latlng($content); | |
} elsif ($content =~ /YMap/) { | |
return $self->yahoo_map_latlng($content); | |
} | |
} | |
return undef; | |
} | |
sub rakuten_map_latlng { | |
my ($self, $content) = @_; | |
my ($lat) = $content =~ /initlat.+?'(\d+?)'/; | |
my ($lng) = $content =~ /initlng.+?'(\d+?)'/; | |
return undef unless ($lat && $lng); | |
return $self->j2gpoint($lat / 3600000, $lng / 3600000); | |
} | |
# japanese geometory convert global; | |
sub j2gpoint { | |
my ($self, $lat, $lng) = @_; | |
my $glat = $lat - $lat * 0.00010695 + $lng * 0.000017464 + 0.0046017; | |
my $glng = $lng - $lat * 0.000046038 - $lng * 0.000083043 + 0.010040; | |
return {lat => $glat, lng => $glng}; | |
} | |
sub yahoo_map_latlng { | |
my ($self, $content) = @_; | |
my ($lat) = $content =~ /lat:'(\d+?.\d+?)'/; | |
my ($lng) = $content =~ /lon:'(\d+?.\d+?)'/; | |
return undef unless ($lat && $lng); | |
return {lat => $lat, lng => $lng}; | |
} | |
sub google_map_url { | |
my ($self) = shift; | |
my $latlng = $self->latlng or croak 'failed latlng'; | |
my $url = URI->new("http://maps.google.co.jp/maps"); | |
$url->query_form( | |
q => $latlng->{lat} . "," . $latlng->{lng} | |
); | |
return $url->as_string; | |
} | |
1; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment