Could you please let me know if the Opensearch-dashboards for region maps is not rendering the data for US-states but is able to do for countries.
It was working fine in Kibana7.10.0. Could you please let me know if there is some setting needed to be changed for opensearch-dashboards.
Hi Tejas, my above reply is the general process to use USA state region map. Could you provide more details about your issue? Any reproduce step/screenshot/error message can be helpful.
@tejashu This usually happens if the joining fields from USA states and index pattern don’t have common values. You can find Usa states geoJson from here
For example:
Let’s say i am have an index with US national parks like below, and i want to project this on to region maps.
POST /national_parks/_bulk?refresh
{"index":{"_id":1}}
{"name": "Yellowstone National Park", "location": "Wyoming"}
{"index":{"_id":2}}
{"name": "Yosemite National Park", "location": "California"}
{"index":{"_id":3}}
{"name": "Zion National Park", "location": "Utah"}