我想使用nominatim检索当前位置附近的随机POI

时间:2016-07-01 02:57:42

标签: javascript jquery orm nominatim

我现在已经搜索了一段时间,而我所能找到的只是在我的位置附近获得特定兴趣点(兴趣点),我想要的是检索附近的地方而不管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);
   });
})




0 个答案:

没有答案