Google Loader больше не работает
Я пытаюсь получить текущее местоположение пользователя с помощью Google Loader. Но я не знаю, почему это перестало работать. Каждый раз, когда страница загружается, google.loader.ClientLocation имеет значение null и не может найти какое-либо местоположение. Мой код:
<script type="text/javascript" src="https://www.google.com/jsapi?key=MY_APP_KEY"></script>
И тогда код JavaScript:
google.load("search", "1", {callback: initialize});
function initialize() {
if (google.loader.ClientLocation) {
var userCountry = google.loader.ClientLocation.address.country;
var userLocation = google.loader.ClientLocation.address.city;
var userRegion = google.loader.ClientLocation.address.region;
var userCountryCode = google.loader.ClientLocation.address.country_code;
$.ajax({
url: "${createLink(controller: 'util', action: 'userLocation')}",
data: { city: userLocation, region: userRegion, country: userCountry, countryCode: userCountryCode }
})
.done(function(data) {
$("#userLocation").html(userLocation + ", " + userRegion + " - " + userCountry +
' <img src="' + data + '"/>'
);
});
}
}
Спасибо!