xxxxxxxxxx
23
function setup()
{
createCanvas(400, 400);
frameRate(2);
}
function draw()
{
background("#131313");
navigator.geolocation.getCurrentPosition
(
// Success callback
function(position)
{
background(0);
textSize(32);
fill('#0B7E23');
text("latitude: " + position.coords.latitude, 50, 100);
text("longitude: " + position.coords.longitude, 50, 200);
}
)
}