Moxy::Plugin::GPS - gps simulation for Moxy


Moxy documentation Contained in the Moxy distribution.

Index


Code Index:

NAME

Top

Moxy::Plugin::GPS - gps simulation for Moxy

SYNOPSIS

Top

  - module: GPS

DESCRIPTION

Top

GPS simulation feature for Moxy.

AUTHOR

Top

Tokuhiro Matsuno

TODO

Top

    support gpsone(au)
    support select pos

SEE ALSO

Top

Moxy


Moxy documentation Contained in the Moxy distribution.

package Moxy::Plugin::GPS;
use strict;
use warnings;
use base qw/Moxy::Plugin/;
use Moxy::Plugin::GPS::EZweb;

sub register {
    my ($class, $c) = @_;
    $c->load_plugins(map { "GPS::$_"} qw/EZweb AirHPhone DoCoMo ThirdForce/);
}

1;
__END__