JSFiddle - React, Tailwind, and code Playground
by rootd
JavaScript
fetch('https://nominatim.openstreetmap.org/search.php?q=%D0%9A%D0%B0%D0%BB%D0%B8%D0%BD%D0%B8%D0%BD%D0%B3%D1%80%D0%B0%D0%B4%D1%81%D0%BA%D0%B0%D1%8F%20%D0%BE%D0%B1%D0%BB%D0%B0%D1%81%D1%82%D1%8C&polygon_geojson=1&format=json')
.then((response) => {
return response.json();
})
.then((data) => {
console.log(data[0].geojson.coordinates[0].map(item => {
return {
lat: item[1],
lng: item[0]
};
}));
});