forked from dex4er/perl-Geo-Coder-GeocodeFarm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME
48 lines (30 loc) · 1.15 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
NAME
Geo::Coder::GeocodeFarm - Geocode addresses with the GeocodeFarm API
SYNOPSIS
use Geo::Coder::GeocodeFarm;
my $geocoder = Geo::Coder::GeocodeFarm->new(
key => 'YOUR-API-KEY-HERE',
);
my $result = $geocoder->geocode(
location => '530 W Main St Anoka MN 55303 US'
);
printf "%f,%f",
$result->{RESULTS}{result}{coordinates}{lat},
$result->{RESULTS}{result}{coordinates}{lon};
DESCRIPTION
The Geo::Coder::GeocodeFarm module provides an interface to the
geocoding functionality of the GeocodeFarm API v4.
SEE ALSO
https://geocode.farm/
BUGS
If you find the bug or want to implement new features, please report it
at https://github.com/dex4er/perl-Geo-Coder-GeocodeFarm/issues
The code repository is available at
http://github.com/dex4er/perl-Geo-Coder-GeocodeFarm
AUTHOR
Piotr Roszatycki <[email protected]>
LICENSE
Copyright (c) 2013, 2015 Piotr Roszatycki <[email protected]>.
This is free software; you can redistribute it and/or modify it under
the same terms as perl itself.
See http://dev.perl.org/licenses/artistic.html