Can't visualize geo_point in nested format

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

KB doesn't currently support nested fields unfortunately.

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.