Hello experts,
I am a newbie to Elastic Maps. I have 3 dimension multiple geo_points i.e. lat, lon & timestamp. I would like to plot the co-ords in Maps and timestamp to be displayed in tool tip. Somehow i could not get the timestamp in tooltip. I don't know want is wrong. pls help
Elastic version : 7.5.1 Kibana version : 7.5.1
Elastic Mapping:
"route": {
"properties": {
"coords": {
"type": "geo_point"
},
"timestamp": {
"type": "text",
"fields": {
"keyword": {
"type": "keyword",
"ignore_above": 256
}
}
}
}
}
Sample data:
{
"route": [
{
"coords": [
132.35673166666666,
34.381421666666675
],
"timestamp": "1574058343449148"
},
{
"coords": [
132.35688,
34.38138
],
"timestamp": "1574058344444382"
},
{
"coords": [
132.35702833333335,
34.38133666666667
],
"timestamp": "1574058345443957"
}
]
}
In tool tip:
-------------