Geo-Routing

 view release on metacpan or  search on metacpan

Changes  view on Meta::CPAN


0.11 2011-07-29 07:09:19

    - Alter the OSRM query_string method to use the json protocol by
      default.

0.10 2011-07-28 11:35:27

    - Support both XML and JSON query methods to OSRM for debugging

    - Use keep-alive with Mechanize

    - More robust tests

0.09 2011-07-26 22:57:34

    - Switch from XML parsing for OSRM to using JSON::XS. Eliminates
      the entire need for parsing things, and makes things faster.

0.08 2011-06-30 12:12:09

lib/Geo/Routing/Role/Driver.pm  view on Meta::CPAN

    my ($self) = @_;

    my $mech = WWW::Mechanize->new(
        user_agent => __PACKAGE__,
        proxy => '',
    );

    $mech->default_header(
        'Accept-Encoding' => "gzip,deflate",
        'Keep-Alive' => "300",
        'Connection' => "keep-alive",
    );

    return $mech;
}

1;



( run in 0.697 second using v1.01-cache-2.11-cpan-39bf76dae61 )