Yusuke Kawasaki > WebService-Recruit-Dokoiku-0.07 > WebService::Recruit::Dokoiku::GetLandmark

Download:
WebService-Recruit-Dokoiku-0.07.tar.gz

Dependencies

Annotate this POD

CPAN RT

Open  0
Report a bug
Module Version: 0.07   Source   Latest Release: WebService-Recruit-Dokoiku-0.11

NAME ^

WebService::Recruit::Dokoiku::GetLandmark - Dokoiku Web Service "getLandmark" API

SYNOPSIS ^

    use WebService::Recruit::Dokoiku;

    my $doko = WebService::Recruit::Dokoiku->new();
    $doko->key( 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' );

    my $param = {
        name    =>  'SHIBUYA109',
    };
    my $res = $doko->getLandmark( %$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

And paging methods are provided, see "PAGING" in WebService::Recruit::Dokoiku. This module is based on XML::OverHTTP.

SEE ALSO ^

WebService::Recruit::Dokoiku

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.