Okay the issue is resolved. All about the mapping of course.
this is the correct mapping
curl -XPUT 'http://localhost:9200/lr*/_mapping/logs' -d '
{
"logs" : {
"properties" : {
"location" : {
"type" : "geo_point",
"lat_lon" : true,
"fielddata" : {
"format" : "compressed"
}
}
}
}
}'
(of course)