| Moxy documentation | Contained in the Moxy distribution. |
Moxy::Plugin::GPS - gps simulation for Moxy
- module: GPS
GPS simulation feature for Moxy.
Tokuhiro Matsuno
support gpsone(au)
support select pos
| 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__