以下範例Code:
if (navigator.geolocation) {
navigator.geolocation.getCurrentPosition(function(res){
console.log(res.coords);
}, function(error){
console.log(error);
});
} else {
console.log("Geolocation is not supported by this browser.");
}