jestem prośbą o geolokalizacji użytkownika poprzez navigator.geolocation
, ale mam wyrzucenie błędu:Geolokalizacja - dostawca lokalizacja sieci w „https://www.googleapis.com/”: zwrócił kod błędu 400
Network location provider at ' https://www.googleapis.com/ ' : Returned error code 400.
Ten błąd występuje w przeglądarce Chrome 54.0.2840.98. Działa to bez problemów w programie Firefox 50.0. Używam serwera lokalnego z http-server
oto funkcję:
_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));
},
I również sporadycznie otrzymuj ten problem. – stueynet