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

NAME

HTTP::MobileAgent::Plugin::Locator - Handling mobile location information plugin for HTTP::MobileAgent

SYNOPSIS

    use CGI;
    use HTTP::MobileAgent;
    use HTTP::MobileAgent::Plugin::Locator;

    $q = CGI->new;
    $agent = HTTP::MobileAgent->new;

    # get location is Geo::Coordinates::Converter::Point instance formatted wgs84
    # ./t/* has many examples.
    $location = $agent->get_location( $q );
    # or
    $location = $agent->get_location( { lat => '35.21.03.342',
                                        lon => '138.34.45.725',
                                        geo => 'wgs84' } );
    # or
    $location = $agent->get_location( $q, { locator => $LOCATOR_GPS } );

    # get latitude and longitude
    print "lat is " . $location->lat;
    print "lng is " . $location->lng;

METHODS

get_location([params], $option_ref);

return Geo::Coordinates::Converter::Point instance formatted if specify gps or basic location parameters sent from carrier. The parameters are different by each carrier.

This method accept a Apache instance, CGI instance or hashref of query parameters.

$option_ref->{locator}

select locator class algorithm option.

$LOCATOR_AUTO_FROM_COMPLIANT auto detect locator from gps compliant. This is default.

$LOCATOR_AUTO auto detect locator class from params.

$LOCATOR_GPS select GPS class.

$LOCATOR_BASIC select BasicLocation class.

gps_compliant()

returns if the agent is GPS compliant.

CLASSES

HTTP::MobileAgent::Plugin::Locator::DoCoMo::BasicLocation

for iArea data support.

HTTP::MobileAgent::Plugin::Locator::DoCoMo::GPS

for GPS data support.

HTTP::MobileAgent::Plugin::Locator::EZweb::BasicLocation

for basic location information data support.

HTTP::MobileAgent::Plugin::Locator::EZweb::GPS

for EZnavi data support.

HTTP::MobileAgent::Plugin::Locator::SoftBank::BasicLocation

for basic location information data support.

HTTP::MobileAgent::Plugin::Locator::SoftBank::GPS

for GPS data support.

HTTP::MobileAgent::Plugin::Locator::Willcom::BasicLocation

for basic location information data support.

EXAMPLES

There is request template using Template in eg directory and mod_rewrite configuration for ezweb extraordinary parameter handling.

AUTHOR

Yoshiki Kurihara <kurihara __at__ cpan.org> with many feedbacks and changes from:

  Tokuhiro Matsuno E<lt>tokuhiro __at__ mobilefactory.jpE<gt>
  Masahiro Chiba E<lt>chiba __at__ geminium.comE<gt>

SEE ALSO

HTTP::MobileAgent, Geo::Coordinates::Converter, Geo::Coordinates::Converter::Point, Geo::Coordinates::Converter::iArea, http://coderepos.org/share/log/lang/perl/HTTP-MobileAgent-Plugin-Locator/

LICENCE

This module is free software; you can redistribute it and/or modify it under the same terms as Perl itself. See perlartistic.