The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Geo::Coder::Many::Ovi - Ovi plugin Geo::Coder::Many

VERSION

Version 0.02

SYNOPSIS

This module adds Ovi support to Geo::Coder::Many.

Use as follows:

    use Geo::Coder::Many;
    use Geo::Coder::Ovi;
    
    my $options = { };
    my $geocoder_many = Geo::Coder::Many->new( $options );
    my $GCO = Geo::Coder::Ovi->new();
    
    my $options = {
        geocoder    => $GCO,
    };
    
    $geocoder_many->add_geocoder( $options );
    
    my $location = $geocoder_many->geocode( 
        {
            location => 'London EC1M 5RF, United Kingdom'
        }
    );

MORE INFO

please see http://search.cpan.org/dist/Geo-Coder-Ovi/

SUBROUTINES/METHODS

geocode

This is called by Geo::Coder::Many - it sends the geocoding request (via Geo::Coder::Ovi) and extracts the resulting location, returning it in a standard Geo::Coder::Many::Response.

Note: the precision score is set based on the size of the bounding box returned. Not all queries seem to return a bounding box. In that case precision in undef

get_name

Returns the name of the geocoder type - used by Geo::Coder::Many