common element for cust_pkg search form fields
[freeside.git] / httemplate / misc / xmlhttp-censustract.html
1 <% $return %>\
2 <%init>
3
4 my $DEBUG = 0;
5
6 my $conf = new FS::Conf;
7
8 my $return = {};
9
10 ## new api link, see doc https://geo.fcc.gov/api/census/
11 my $url = "https://geo.fcc.gov/api/census/block/find?format=json&censusYear=" . $cgi->param('census_year') . "&latitude=" . $cgi->param('lat') . "&longitude=" . $cgi->param('lon');
12
13 use LWP::Simple;
14 my $return = get $url;
15
16 </%init>