JSFiddle - React, Tailwind, and code Playground

by Amar Nyayapati

HTML

<script>
if (navigator.geolocation){
    var getID = navigator.geolocation.getCurrentPosition(function(pos){
        posn(pos.coords.latitude, pos.coords.longitude);
    });
} 
else{
    alert("I'm sorry, but geolocation services are not supported by your browser.");
}
function posn(lat,long){
    document.write("latitude     : "+ lat +"<br />");
    document.write("longitude : " + long);
}
</script>