xxxxxxxxxx
23
function setup() {
createCanvas(400, 400);
}
function draw() {
background(220);
}
function mousePressed() {
getWeather(31.2304, 121.4737);
}
function getWeather(lat, long) {
// this sends a HTTP request to a server
// on the internet
httpGet("https://api.open-meteo.com/v1/forecast?latitude=" + lat + "&longitude=" + long + "¤t=temperature_2m,precipitation,weather_code", "json", gotWeather);
}
function gotWeather(data) {
// this is called when the response has been
// received
console.log(data);
}