Как зная latitude and longitude узнать имя города поситителя?
if (navigator.geolocation) {
navigator.geolocation.getCurrentPosition(function(pos) {
const lat = pos.coords.latitude,
long = pos.coords.longitude
});
} else {
console.log("geo location is not supported");
}