从ElasticSearch

时间:2016-03-30 06:04:12

标签: elasticsearch

我们在模型中有两个单独的纬度和经度字段。我们如何在ElasticSearch中创建一个映射来创建geo_point类型?

1 个答案:

答案 0 :(得分:1)

您需要创建一个类型为geo_point

的新字段

映射

{
    "pin" : {
        "properties" : {
            "location" : {
                "type" : "geo_point"
            }
        }
    }
}

然后您可以使用here

中描述的任何输入格式在索引时填充字段

例如。

{
    "pin" : {
        "location" : {
            "lat" : 41.12,
            "lon" : -71.34
        }
    }
}