File Coverage

blib/lib/Geo/Coder/GooglePlaces.pm
Criterion Covered Total %
statement 12 12 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod 1 1 100.0
total 17 17 100.0


line stmt bran cond sub pod time code
1             package Geo::Coder::GooglePlaces;
2              
3 5     5   459424 use strict;
  5         70  
  5         134  
4 5     5   22 use warnings;
  5         9  
  5         124  
5 5     5   1922 use Geo::Coder::GooglePlaces::V3;
  5         17  
  5         461  
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             =cut
18              
19             our $VERSION = '0.05';
20              
21             =head1 SUBROUTINES/METHODS
22              
23             =head2 new
24              
25             See L for usage.
26              
27             =cut
28              
29             sub new {
30 10     10 1 3788 my ($self, %param) = @_;
31 10         19 delete $param{apiver};
32              
33 10         49 return Geo::Coder::GooglePlaces::V3->new(%param);
34             }
35              
36             =head1 LICENSE
37              
38             This program is free software; you can redistribute it and/or
39             modify it under the same terms as Perl itself.
40              
41             See L
42              
43             =cut
44              
45             1;