Hi
I would like to index the properties in the GeoJson object as a part of geo_shape type in elastic search. Any ideas how to do that. The GeoJson supports the object of type
http://geojson.org/
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [125.6, 10.1]
},
"properties": {
"name": "Dinagat Islands"
}
}
while the elastic search supports :--
"location": {
"type": "geo_shape",
"tree": "quadtree",
"precision": "1m"
}
how do i index the "properties" object given above which has "name" in it as a part of the geo_shape type?
Rohit