Route on map

hi @wkpv68,

the answer is yes, perhaps no, depending on exactly what you require.

If you index every GPS-coordinate as a single document in Elasticsearch, you can use Kibana to create a heatmap of the data. This uses the ES geohash-aggregation, which aggregates these points on a grid. Kibana does position that aggregated point in the geometric-middle of all the points it aggregated. That will give you a visual effect of more or less that route, but not give you access to the individual points of the route.

Mapping individual documents (so without aggregating), such as individual points on a route, is an outstanding feature request. https://github.com/elastic/kibana/issues/8173. You can check that out and see if it describes your use-case.

Thanks,