I've been using Kibana's coordinate map every now and again and today I discovered that my coordinate map visualisation stopped* working.
When selecting Index Patterns it lists the "Geo" field with the type "geo_point". My mapping looks like this:
PUT /packets
{
"mappings": {
"packet": {
"properties": {
"IPAddress": {"type": "keyword"},
"Country": {"type": "keyword"},
"City": {"type": "keyword"},
"Location": {"type": "geo_point"}
}
}
}
}
Querying GET packets_mapping
returns the following:
"Geo": {
"properties": {
"lat": {
"type": "long"
},
"lon": {
"type": "long"
}
}
},
When I create a Coordinate map visulisation I can select "Geohash" as aggregation and "Geo" as field. However, the map remains empty. (Changing the map type doesn't help either...)
*) While I'm fairly certain that my mapping/values have remained the same, I edited and reuploaded various parts so this might be a mapping related issue. But since the Kibana manual has the geo_point defined in the same way as I have I think this issue lies somewhere else.
Any help would be appriciated