diff options
author | Christopher Burger <burgerc@freeside.biz> | 2018-11-16 11:14:32 -0500 |
---|---|---|
committer | Christopher Burger <burgerc@freeside.biz> | 2018-11-16 11:14:32 -0500 |
commit | 12ac7af853e51693f1bc7e49669974b9cd54e9bb (patch) | |
tree | a6b0522b36c01de0e06ae89a8787a01c982c2de1 /httemplate/misc/openmap.html | |
parent | e91621d2c95ba5662958ee24946bb9324ee41b72 (diff) |
RT# 81730 - added code to fix possible cross origin request error
Diffstat (limited to 'httemplate/misc/openmap.html')
-rw-r--r-- | httemplate/misc/openmap.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/httemplate/misc/openmap.html b/httemplate/misc/openmap.html index 7cbe3db1d..88f64c1ff 100644 --- a/httemplate/misc/openmap.html +++ b/httemplate/misc/openmap.html @@ -18,7 +18,7 @@ <script> - var url = 'http://nominatim.openstreetmap.org/search?format=json&limit=1&q=<%$loc%>'; + var url = 'xmlhttp-openstreetmap.html?loc=<%$loc%>'; $.getJSON(url,function(data){ var latlong = [data[0].lat, data[0].lon]; var mymap = L.map('mapid').setView(latlong, 15); |