通过Elastical设置ElasticSearch geo_point Mapper类型(node.js)

时间:2013-02-05 04:23:12

标签: node.js elasticsearch

我一直在挖掘Elastical源代码,试图找出在创建索引时如何设置Core Type。具体来说,我需要将字段设置为geo_point字段。

Mongoosastic我只是在我的架构上设置es_type字段,但我无法弄清楚如何在Elastical中进行等效。

谢谢!

1 个答案:

答案 0 :(得分:0)

看起来我正在寻找“putMapping”功能。

elastical.putMapping(index, type, {'type': {'properties': {"coords" : {"type" : "geo_point", "store": "yes"}}}}, function(e,r){});