xxxxxxxxxx
25
let history;
function preload(){
console.log("loading");
//history = loadJSON("BrowserHistory.json");
// you need to put your file in the same folder and put name here
history = loadJSON("2015_JANUARY.json");
}
function setup() {
createCanvas(400, 400);
let timelineObjects = history.timelineObjects;
for(var i =0; i <timelineObjects.length; i++ ){
let placeVisit = timelineObjects[i].placeVisit
if(placeVisit){
console.log(placeVisit.location.address);
}
}
}
function draw() {
background(220);
}