|
NAMEGeo::Coder::TomTom - Geocode addresses with the TomTom Map Toolkit APISYNOPSISuse Geo::Coder::TomTom; my $geocoder = Geo::Coder::TomTom->new(apikey => 'Your API key'); my $location = $geocoder->geocode( location => 'De Ruijterkade 154, Amsterdam, NL' ); DESCRIPTIONThe "Geo::Coder::TomTom" module provides an interface to the TomTom Map Toolkit geocoding service.METHODSnew$geocoder = Geo::Coder::TomTom->new('Your API key') $geocoder = Geo::Coder::TomTom->new( apikey => 'Your API key', # debug => 1, ) Creates a new geocoding object. Accepts the following named arguments:
geocode$location = $geocoder->geocode(location => $location) @locations = $geocoder->geocode(location => $location) In scalar context, this method returns the first location result; and in list context it returns all location results. Each location result is a hashref; a typical example looks like: { "latitude": 52.3773852, "longitude": 4.9094794, "geohash": "u173zxnbrhm0", "mapName": "TomTomMap", "houseNumber": "154", "type": "house", "street": "De Ruijterkade", "alternativeStreetName": [], "city": "Amsterdam", "district": "Amsterdam", "country": "The Netherlands", "countryISO3": "NLD", "postcode": "1011 AC", "formattedAddress": "De Ruijterkade 154, 1011 AC Amsterdam, Amsterdam, NL", "isCensusMicropolitanFlag": false, "widthMeters": 1, "heightMeters": 1, "score": 1.0, "confidence": 0.40665394, "iteration": 0 }, response$response = $geocoder->response() Returns an HTTP::Response object for the last submitted request. Can be used to determine the details of an error. ua$ua = $geocoder->ua() $ua = $geocoder->ua($ua) Accessor for the UserAgent object. SEE ALSO<http://developer.tomtom.com/docs/read/map_toolkit/web_services/geocoding_single_call>REQUESTS AND BUGSPlease report any bugs or feature requests to <http://rt.cpan.org/Public/Bug/Report.html?Queue=Geo-Coder-TomTom>. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.SUPPORTYou can find documentation for this module with the perldoc command.perldoc Geo::Coder::TomTom You can also look for information at:
COPYRIGHT AND LICENSECopyright (C) 2010-2015 gray <gray at cpan.org>, all rights reserved.This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. AUTHORgray, <gray at cpan.org>
Visit the GSP FreeBSD Man Page Interface. |