我目前正在使用此代码获取JSON数据,因此我可以使用它来映射地震:
getEarthquakes(){
return fetch('https://earthquake.usgs.gov/earthquakes/feed/v1.0/summary/all_month.csv')
.then((response) => response.json())
.then((responseJson) =>{
console.log(responseJson);
})
.catch((error) => {
console.log(error);
});
}
我使用.CSV
链接,因为.GEOJSON
无效。
它只是给了我ERROR: object object
个错误。我尝试过查找信息,但我找不到任何可以帮助我的信息。
答案 0 :(得分:0)
重新启动我的模拟器后,.geojson
填满了我的控制台..