kjp320 has asked for the wisdom of the Perl Monks concerning the following question:
i've read through the geocode examples and the Soap::Lite pages and i've tried what i have seen but nothing seems to work. so any and all help would be extremely appreciated!!!! thanks#!/usr/bin/perl use SOAP::Lite; use Data::Dumper; #use strict; use warnings; #use Geo::Coder::Us; my ($where) = ""\n"; my $result = SOAP::Lite -> uri( 'http://rpc.geocoder.us/Geo/Coder/US' ) -> proxy ('http://rpc.geocoder.us/service/soap' ) -> geocode_address( $where ) -> result; print Dumper $result;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: returning lat and long only??
by samtregar (Abbot) on Apr 01, 2008 at 22:06 UTC | |
|
Re: returning lat and long only??
by runrig (Abbot) on Apr 01, 2008 at 23:40 UTC | |
|
Re: returning lat and long only??
by BrowserUk (Patriarch) on Apr 01, 2008 at 21:49 UTC | |
|
Re: returning lat and long only??
by GrandFather (Saint) on Apr 01, 2008 at 23:01 UTC | |
by FunkyMonk (Bishop) on Apr 01, 2008 at 23:07 UTC | |
by moklevat (Priest) on Apr 02, 2008 at 01:59 UTC |