Kibana Maps Failed display Region

i had upload data with mapping like this..

{
"mapping": {
"_meta": {
"created_by": "file-upload-plugin"
},
"properties": {
"address": {
"type": "text",
"fields": {
"keyword": {
"type": "keyword",
"ignore_above": 256
}
}
},
"coordinates": {
"type": "geo_shape"
},
"gerai": {
"type": "text",
"fields": {
"keyword": {
"type": "keyword",
"ignore_above": 256
}
}
},
"region": {
"type": "text",
"fields": {
"keyword": {
"type": "keyword",
"ignore_above": 256
}
}
}
}
}
}

i want to make region maps but its not show anythings.

this data i upload :
{"type": "FeatureCollection",
"features": [{"type": "Feature",
"geometry": {"type": "Polygon",
"coordinates": [[[-6.176095, 106.77909983699092],
[-6.176095, 106.79718616300906],
[-6.167104324078414, 106.79266458150452],
[-6.167104324078414, 106.78362141849546],
[-6.185085675921586, 106.79266458150452],
[-6.185085675921586, 106.78362141849546],
[-6.176095, 106.77909983699092]]]},
"properties": {"region": "BBB",
"gerai": "BBB",
"address": "BBB"}},
{"type": "Feature",
"geometry": {"type": "Polygon",
"coordinates": [[[-6.161368, 106.72488108821535],
[-6.161368, 106.74296691178465],
[-6.152377324078414, 106.73844545589233],
[-6.152377324078414, 106.72940254410767],
[-6.1703586759215865, 106.73844545589233],
[-6.1703586759215865, 106.72940254410767],
[-6.161368, 106.72488108821535]]]},
"properties": {"region": "AAA",
"gerai": "AAA",
"address": "AAA"}}}

Can you please format your message? Also what version of the stack are you using , what license level are you on and what are the logs indicating ? any screenshots?

Thanks
Rashmi

i use kibana version 7.5.

this after upload GeoJson:
{
"success": true,
"id": "48f0a2c0-56e9-11ea-8",
"fields": [
{
"name": "_id",
"type": "string",
"esTypes": [
"_id"
],
"count": 0,
"scripted": false,
"searchable": true,
"aggregatable": true,
"readFromDocValues": false
},
{
"name": "_index",
"type": "string",
"esTypes": [
"_index"
],
"count": 0,
"scripted": false,
"searchable": true,
"aggregatable": true,
"readFromDocValues": false
},
{
"name": "_score",
"type": "number",
"count": 0,
"scripted": false,
"searchable": false,
"aggregatable": false,
"readFromDocValues": false
},
{
"name": "_source",
"type": "_source",
"esTypes": [
"_source"
],
"count": 0,
"scripted": false,
"searchable": false,
"aggregatable": false,
"readFromDocValues": false
},
{
"name": "_type",
"type": "string",
"esTypes": [
"_type"
],
"count": 0,
"scripted": false,
"searchable": true,
"aggregatable": true,
"readFromDocValues": false
},
{
"name": "address",
"type": "string",
"esTypes": [
"text"
],
"count": 0,
"scripted": false,
"searchable": true,
"aggregatable": false,
"readFromDocValues": false
},
{
"name": "address.keyword",
"type": "string",
"esTypes": [
"keyword"
],
"count": 0,
"scripted": false,
"searchable": true,
"aggregatable": true,
"readFromDocValues": true,
"parent": "address",
"subType": "multi"
},
{
"name": "coordinates",
"type": "geo_shape",
"esTypes": [
"geo_shape"
],
"count": 0,
"scripted": false,
"searchable": true,
"aggregatable": false,
"readFromDocValues": false
},
{
"name": "gerai",
"type": "string",
"esTypes": [
"text"
],
"count": 0,
"scripted": false,
"searchable": true,
"aggregatable": false,
"readFromDocValues": false
},
{
"name": "gerai.keyword",
"type": "string",
"esTypes": [
"keyword"
],
"count": 0,
"scripted": false,
"searchable": true,
"aggregatable": true,
"readFromDocValues": true,
"parent": "gerai",
"subType": "multi"
},
{
"name": "region",
"type": "string",
"esTypes": [
"text"
],
"count": 0,
"scripted": false,
"searchable": true,
"aggregatable": false,
"readFromDocValues": false
},
{
"name": "region.keyword",
"type": "string",
"esTypes": [
"keyword"
],
"count": 0,
"scripted": false,
"searchable": true,
"aggregatable": true,
"readFromDocValues": true,
"parent": "region",
"subType": "multi"
}
]
}

in log i not see any error...
image
its cannot fit to data but found doc...

are the data i upload false?

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