在我的iOS应用程序中,地理定位工作正常,并在观察器功能上获取我的位置。
然而,对于Android,当我输入警报或控制台日志时,代码似乎永远不会在成功或失败的回调中执行。
watchID: (null: ?number),
this.watchID = navigator.geolocation.watchPosition(
(position) => {
this.setState({
userLocation: position,
geo: true
}, this.fetchBusinesses());
},
(error) => console.log(error.message),
{enableHighAccuracy: true, timeout: 2000, maximumAge: 1000}
);