line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Geo::Coder::GooglePlaces; |
2
|
|
|
|
|
|
|
|
3
|
5
|
|
|
5
|
|
400284
|
use strict; |
|
5
|
|
|
|
|
42
|
|
|
5
|
|
|
|
|
144
|
|
4
|
5
|
|
|
5
|
|
34
|
use warnings; |
|
5
|
|
|
|
|
10
|
|
|
5
|
|
|
|
|
125
|
|
5
|
5
|
|
|
5
|
|
2264
|
use Geo::Coder::GooglePlaces::V3; |
|
5
|
|
|
|
|
35
|
|
|
5
|
|
|
|
|
547
|
|
6
|
|
|
|
|
|
|
|
7
|
|
|
|
|
|
|
=head1 NAME |
8
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
Geo::Coder::GooglePlaces - Google Maps Geocoding API |
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
=head1 DESCRIPTION |
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
Geo::Coder::GooglePlaces provides a geocoding functionality using Google Maps API. |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
See L for usage. |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
=head1 VERSION |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
Version 0.06 |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
=cut |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
our $VERSION = '0.06'; |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
=head1 SUBROUTINES/METHODS |
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
=head2 new |
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
See L for usage. |
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
=cut |
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
sub new { |
34
|
11
|
|
|
11
|
1
|
4848
|
my ($self, %param) = @_; |
35
|
11
|
|
|
|
|
25
|
delete $param{apiver}; |
36
|
|
|
|
|
|
|
|
37
|
11
|
|
|
|
|
49
|
return Geo::Coder::GooglePlaces::V3->new(%param); |
38
|
|
|
|
|
|
|
} |
39
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
=head1 LICENSE |
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or |
43
|
|
|
|
|
|
|
modify it under the same terms as Perl itself. |
44
|
|
|
|
|
|
|
|
45
|
|
|
|
|
|
|
See L |
46
|
|
|
|
|
|
|
|
47
|
|
|
|
|
|
|
=cut |
48
|
|
|
|
|
|
|
|
49
|
|
|
|
|
|
|
1; |