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"}}}