I have a JSON file with cities from Openweathermap. And want to put cities names into dropdown list in Unity, using C#. How to do this?
JSON file
{
"id": 2163306,
"name": "Holgate",
"country": "AU",
"coord": {
"lon": 151.416672,
"lat": -33.400002
}
},
{
"id": 2164949,
"name": "Gooramadda",
"country": "AU",
"coord": {
"lon": 146.550003,
"lat": -36
}
},
{
"id": 2157716,
"name": "Miepoll",
"country": "AU",
"coord": {
"lon": 145.466675,
"lat": -36.616669
}
},
{
"id": 2148406,
"name": "Steiglitz",
"country": "AU",
"coord": {
"lon": 144.183334,
"lat": -37.883331
}
},