Расположение клиента API Google - PullRequest
2 голосов
/ 22 февраля 2012

Я хочу определить местоположение клиента браузера, поэтому я написал этот код:

 if(google.loader.ClientLocation)
{
var visitor_lat = google.loader.ClientLocation.latitude; 
var visitor_lon = google.loader.ClientLocation.longitude; 
var visitor_city = google.loader.ClientLocation.address.city;
var visitor_region = google.loader.ClientLocation.address.region;
var visitor_country = google.loader.ClientLocation.address.country;
var visitor_countrycode = google.loader.ClientLocation.address.country_code;
document.getElementById('yourinfo').innerHTML = '<p>Lat/Lon: ' + visitor_lat + ' / ' + visitor_lon + '</p><p>Location: ' + visitor_city + ', ' + visitor_region + ', ' + visitor_country + ' (' + visitor_countrycode + ')</p>';
alert("Found Location");
}
else
{
// ClientLocation not found or not populated
// so perform error handling
alert("Could not find client location... ");
}

Я просмотрел много других веб-уроков, и этот код должен работать, но это не для меня: S. Это что-то из-за того, что Google отключил функцию ClientLocation?

...