我现在已经搜索了一段时间,而我所能找到的只是在我的位置附近获得特定兴趣点(兴趣点),我想要的是检索附近的地方而不管POI类型。
下面是我到目前为止获得附近地方的情况,尽管代码只检索了附近的咖啡馆。
database name

$(document).ready(function(){
$.ajax({
url : "http://nominatim.openstreetmap.org/search.php?q=cafe+near+%5B14.1832558%2C121.26603150000001%5D&format=json",
method : "get"
}).done(function(response){
console.log(response);
});
})