NAME
WebService::Recruit::Dokoiku::GetStation - Dokoiku Web Service "getStation" API
SYNOPSIS
use WebService::Recruit::Dokoiku;
my $doko = WebService::Recruit::Dokoiku->new();
$doko->key( 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' );
my $param = {
lon_jgd => 139.758,
lat_jgd => 35.666,
};
my $res = $doko->getStation( %$param );
die "error!" if $res->is_error;
my $list = $res->root->landmark;
foreach my $landmark ( @$list ) {
print "code: ", $landmark->code, "\n";
print "name: ", $landmark->name, "\n";
print "web: ", $landmark->dokopcurl, "\n";
print "map: ", $landmark->dokomapurl, "\n";
print "\n";
}
my $root = $res->root;
DESCRIPTION
The request to this API requires one or some of query parameters below:
my $param = {
pagenum => '1',
pagesize => '10',
name => 'name of station',
code => '4254',
lat_jgd => '35.6686',
lon_jgd => '139.7593',
radius => '1000',
iarea => '05800',
};
The response from this API is tree structured and provides methods below:
$root->status
$root->totalcount
$root->pagenum
$root->landmark->[0]->code
$root->landmark->[0]->name
$root->landmark->[0]->dokopcurl
$root->landmark->[0]->dokomburl
$root->landmark->[0]->dokomapurl
$root->landmark->[0]->lat_jgd
$root->landmark->[0]->lon_jgd
$root->landmark->[0]->lat_tky
$root->landmark->[0]->lon_tky
And paging methods are provided, see "PAGING" in WebService::Recruit::Dokoiku. This module is based on XML::OverHTTP.
SEE ALSO
AUTHOR
Yusuke Kawasaki http://www.kawa.net/
This module is unofficial and released by the authour in person.
COPYRIGHT AND LICENSE
Copyright (c) 2007 Yusuke Kawasaki. All rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.