xxxxxxxxxx
21
function setup() {
createCanvas(400, 400);
queryLocation();
}
function draw() {
background(220);
}
function queryLocation() {
let location_url = 'https://api.ipregistry.co?key=8fysg6pf85u3vs';
location_json = loadJSON(location_url, processLocationResponse);
}
function processLocationResponse(response){
let city = response.location.city;
console.log(city);
}