Я запрашиваю геолокацию пользователя через navigator.geolocation
, но я получаю ошибку:
Поставщик сетевых адресов в https://www.googleapis.com/ ': Возврат код ошибки 400.
Эта ошибка возникает в Chrome 54.0.2840.98. Это работает без проблем на Firefox 50.0. Я запускаю локальный сервер с http-server
Здесь функция:
_getLocation: function() {
if (!navigator.geolocation) {
alert('Geolocation is not supported by this browser, maybe use a pop-up and ask user for zipcode?');
}
function success(position) {
var latitude = position.coords.latitude;
var longitude = position.coords.longitude;
this.setState({
location: {
latitude: latitude,
longitude: longitude
}
});
this._getWeather(this.state.location.latitude, this.state.location.longitude);
}
function error(err) {
console.warn('ERROR(' + err.code + '): ' + err.message);
this.setState({
location: 'ERROR(' + err.code + '): ' + err.message
});
}
navigator.geolocation.getCurrentPosition(success.bind(this), error.bind(this));
},