0

我正在使用 mapquest 开放地理编码 api,当 POST 请求到 api 时,某些选项不起作用。

例如,此 HTTP GET 请求遵循 ignoreLatLngInput、thumbMaps 和 maxResults 选项

http://open.mapquestapi.com/geocoding/v1/address?inFormat=kvp&outFormat=json&ignoreLatLngInput=true&thumbMaps=false&maxResults=3&location=Boston,+MA

但是当通过 HTTP POST 提交相同的值时,它们会被忽略,有些甚至会导致请求失败。

4

1 回答 1

0

使用以下。

$.getJSON(
    "http://nominatim.openstreetmap.org/reverse?format=json&lat="+lat+"&lon="+lon+"",
     function(data) {
         var loc = data.display_name;   
});
于 2013-02-14T09:54:00.587 回答