Hi,
I have problem visualizing geo data with Kibana.
Below is my mapping configuration.
{
"mongo": {
"mappings": {
"order": {
"properties": {
"ord_end_location": {
"type": "nested",
"properties": {
"coordinates": {
"type": "geo_point"
},
"type": {
"type": "keyword"
}
}
},
"ord_sa_location": {
"type": "nested",
"properties": {
"coordinates": {
"type": "geo_point"
},
"type": {
"type": "keyword"
}
}
}
}
}
}
}
}
Just in case I have following data in my index.
After inserting data, I went to visualize
section.
The problem here is after selecting one of the fields listed, map returns white screen as can be seen below.
Any comment or feedback would be appreciated.
Best