我正在尝试使用cloudant的地理空间索引搜索文档。 此外,我一直在使用cloudant java客户端,如下所示。 但我找不到搜索文件的方式或样本。 请帮助我!!
<dependency>
<groupId>com.cloudant</groupId>
<artifactId>cloudant-client</artifactId>
<version>2.12.0</version>
</dependency>
这是geospacial指数。
_design/eventgeo
indexname:st_index
function (doc) {
if (doc.geometry && doc.geometry.coordinates) {
st_index(doc.geometry);
}
}
我试图搜索下面的文件。但我得到错误:
异常消息:找不到404对象 https://??????.cloudant.com:443/events/_design/eventgeo/_search/_geo?limit=10&include_docs=true&q=lat:150.78688%20and%20lon:38.67915%20and%20radius:10000%20and%20relation:contains%20and%20include_docs:true。 错误:not_found。原因:_geo not found ..
List<Event> events = this.database.search("eventgeo/_geo/st_index").limit(10).includeDocs(true)
.query("lat:" + latitude + " and lon:" + longitude + " and radius:" + 10000 + " and relation:contains"
+ " and include_docs:true", Event.class);
答案 0 :(得分:0)
查看地理空间查询的Cloudant文档: https://console.bluemix.net/docs/services/Cloudant/api/cloudant-geo.html#cloudant-nosql-db-geospatial
您似乎正在使用搜索API端点:
_design/eventgeo/_search/_geo
我相信你想要使用地理空间索引API端点:
_design/eventgeo/_geo/geoidx