Nell'assistenza di Google, puoi trovare il prossimo:
Google automatically detects your computer’s location using its IP
address, Location History (if it’s turned on), and recent locations
you’ve searched for.
In che modo Google utilizza il tuo indirizzo IP
Your IP address is usually based on a real-world location, so Google
might use your IP address to guess where you are and give you local
results.
For example, Google could use your IP address to give you the weather
forecast for the town you're in when you search for weather.
Per la cronologia delle posizioni, puoi controllare qui . E per le località recenti qui .
Inoltre, non sarei sorpreso se Google facesse un "wardriving" in Ungheria (mentre lavorava su Google street project) - Fonte , in base a ciò, può essere possibile determinare la posizione quasi esatta.
Questo codice di pace di Python è vecchio e non funziona più, ma può darti un'idea di cosa Sto prendendo proprio qui.
Collegati al Wi-Fi ed esegui questo codice (:
function showPosition(position) {
var latlon = position.coords.latitude + "," + position.coords.longitude;
var img_url = "https://maps.googleapis.com/maps/api/staticmap?center=
"+latlon+"&zoom=14&size=400x300&sensor=false";
document.getElementById("mapholder").innerHTML = "<img src='"+img_url+"'>";
}