C# nest elasticsearch geo point array index not shown in kibana
问题 I have the following classes public class MyLayer { public List<MyLocation> Locations { get; set; } } public class MyLocation { public string Name { get; set; } public MyCoordinate Coordinate { get; set; } } public class MyCoordinate { public double Lat { get; set; } public double Lon { get; set; } } And this code to index objects var node = new Uri("http://localhost:9200"); string indexName = "geopoint-tests2"; var settings = new ConnectionSettings( node, defaultIndex: "geopoint-tests2" );