Как правильно сложить geo_shape данные и отобразить их в kibana?

Загрузил в elasticsearch шаблон:

PUT _template/farm-elevators_contours
{
"index_patterns": "farm-elevators_contours-*",
"settings": {
"number_of_shards": 1,
"number_of_replicas": 1,
"index.refresh_interval" : "15s"
},
"mappings" : {
"default" : {
"properties" : {
"id": {"type":"integer"},
"ElevatorId": {"type":"integer"},
"id_elevators_contours": {"type":"integer"},
"elevator_id_all": {"type":"integer"},
"location_elevators_contours": {"type": "geo_shape", "tree": "quadtree", "precision": "10m"}
}
}
}
}

Далее загрузил в индекс один документ:

POST /farm-elevators_contours-v1/doc
{
"ElevatorId" : "1",
"elevator_id_all" : "1",
"location_elevators_contours" : {
"type" : "polygon",
"coordinates" : [
[ [54.7965415, 52.7846761], [54.7948134, 52.7839003], [54.7940585, 52.7900412], [54.7958084, 52.7908245], [54.7961167, 52.7881808], [54.795904, 52.7881808], [54.7960125, 52.7872996], [54.7962296, 52.7873373], [54.7965415, 52.7846761] ]
]
}
}
В index pattren кибаны вижу следующее:

В discovery кибаны вижу:

При этом ни на coordinate map ни на region maps отобразить данную область не получается.
Вроде все по честному сделано, по правильному по документации.
Подскажите пожалуйста в чем дело?
Позволяет ли kibana отображать geo_shape данные на карте?

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.