JSFiddle - React, Tailwind, and code Playground

by sandro_paganotti

JavaScript

navigator.geolocation.getCurrentPosition(
    function(pos){
        console.log(pos);
    },
    function(err){
        console.log(err);
    },
    {
        maximumAge: 1000
    }
);