isochrone_data = {
const rawFetch = await fetch(
`https://api.targomo.com/westcentraleurope/v1/polygon?key=${targomoKey()}`,
{
method: "POST",
headers: {
"Content-Type": "application/json"
},
body: JSON.stringify(config)
}
);
const geoJSON = (await rawFetch.json()).data;
map.getSource("isochrone").setData(geoJSON);
return geoJSON;
}