Help for this page

Select Code to Download


  1. or download this
    use SOAP::Lite ( +trace => 'all', readable => 1, outputxml => 1, ); # 
    +for debugging
    
  2. or download this
    my $result = $soap->call('geocode', $address);
    my $coords = $result->result;
    print "Latitude: ".$coords->{lat}."\n";
    print "Longitude: ".$coords->{lon}."\n";