1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101
| GET attractions/_doc/_search { "query": { "constant_score": { "filter": { "geo_distance": { "distance": "1km", "location": { "lat": 34.21677323109457, "lon": 113.76829145767215 } } } } }, "sort": [ { "_geo_distance": { "location": [ { "lat": 34.21677323109457, "lon": 113.76829145767215 } ], "unit": "km", "distance_type": "arc", "order": "asc", "validation_method": "STRICT" } } ] }
=> 返回 { "took" : 1, "timed_out" : false, "_shards" : { "total" : 1, "successful" : 1, "skipped" : 0, "failed" : 0 }, "hits" : { "total" : { "value" : 3, "relation" : "eq" }, "max_score" : null, "hits" : [ { "_index" : "attractions", "_type" : "_doc", "_id" : "3", "_score" : null, "_source" : { "name" : "举个栗子", "location" : { "lat" : 34.22023318002376, "lon" : 113.76751898147586 } }, "sort" : [ 0.39122806957571005 ] }, { "_index" : "attractions", "_type" : "_doc", "_id" : "1", "_score" : null, "_source" : { "name" : "中国建设银行", "location" : { "lat" : 34.22278812802373, "lon" : 113.76726148941043 } }, "sort" : [ 0.6754979876459357 ] }, { "_index" : "attractions", "_type" : "_doc", "_id" : "4", "_score" : null, "_source" : { "name" : "长葛市毛主席纪念馆", "location" : { "lat" : 34.225502675366116, "lon" : 113.76586674072269 } }, "sort" : [ 0.9959412471457036 ] } ] } }
|