Skip Menu |

This queue is for tickets about the Geo-Coder-GoogleMaps CPAN distribution.

Report information
The Basics
Id: 52712
Status: resolved
Priority: 0/
Queue: Geo-Coder-GoogleMaps

People
Owner: Nobody in particular
Requestors: SREZIC [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: Unimportant
Broken in: (no value)
Fixed in: (no value)



Attached is a patch with some fixes to the Pod. Most important is that a Geo::Coder::GoogleMaps::Response link is missing an "r" in "Coder". Regards, Slaven
Subject: 0001--some-minor-Pod-typo-fixes-and-L-.-additions.patch
From 2e35744d3f7c141e1c58b7b7dacf1415cb1df27a Mon Sep 17 00:00:00 2001 From: Slaven Rezic <slaven@rezic.de> Date: Sat, 12 Dec 2009 16:01:58 +0100 Subject: [PATCH 1/2] - some minor Pod typo fixes and L<...> additions --- lib/Geo/Coder/GoogleMaps.pm | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/Geo/Coder/GoogleMaps.pm b/lib/Geo/Coder/GoogleMaps.pm index 56bb7a2..82a0639 100644 --- a/lib/Geo/Coder/GoogleMaps.pm +++ b/lib/Geo/Coder/GoogleMaps.pm @@ -34,11 +34,11 @@ WARNING WARNING WARNING WARNING WARNING WARNING -This module provide Google Maps API. Please note that this module use Tatsuhiko Miyagawa's work on Geo::Coder::Google as base (L<http://search.cpan.org/~miyagawa/>). +This module provide Google Maps API. Please note that this module use Tatsuhiko Miyagawa's work on L<Geo::Coder::Google> as base (L<http://search.cpan.org/~miyagawa/>). In fact it's a fork of Mr Miyagawa's module. Geo::Coder::GoogleMaps use the default JSON data type as default output but also support XML/KML. -The direct output of the geocode() method is now a Geo::Coder::GoogleMaps::Location object which can be exported to any of the supported format. +The direct output of the geocode() method is now a L<Geo::Coder::GoogleMaps::Location> object which can be exported to any of the supported format. use Geo::Coder::GoogleMaps; @@ -90,7 +90,7 @@ WARNING WARNING WARNING WARNING WARNING WARNING -Get a location from the Google Maps API. It return a L<Geo::Code::GoogleMaps::Response> object. +Get a location from the Google Maps API. It return a L<Geo::Coder::GoogleMaps::Response> object. my $response = $gmap->geocode(location => '88 rue du chateau, 92600, Asnières sur seine, France'); print $response->placemarks()->[0]->Serialyze(1) if( $response->is_success() ) ; -- 1.6.1
Thank you very much for this patch, I applied it and the problem is fixed in the 0.4 release.