summaryrefslogtreecommitdiff
path: root/httemplate/misc/xmlhttp-openstreetmap.html
blob: bf6625c93483347548a27277214d44f7dcac0450 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<% $return %>\
<%init>

my $DEBUG = 0;

my $conf = new FS::Conf;

my $return = {};

my $url = "http://nominatim.openstreetmap.org/search?format=json&limit=1&q=" . $cgi->param('loc');

use LWP::Simple;
my $return = get $url;

</%init>